Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

All public logs

More actions

Combined display of all available logs of Fiend's Outlands Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 11:51, 28 February 2025 Fiend talk contribs created page Module:Logic (Created page with "local p = {} function p.If(frame) -- Checks if a logical statment is true local arg1 = frame.args[1] local valueIfTrue = frame.args[2] local valueIfFalse = frame.args[3] if arg1 == true then return valueIfTrue else return valueIfFalse end end function p.IfEqual(frame) -- Checks if two values are equal local arg1 = frame.args[1] local arg2 = frame.args[2] local valueIfEqual = frame.args[3] local valueIfNotEqual =...")