isTrusted: Difference between revisions
Jump to navigation
Jump to search
(New page: ==Function isTrusted== Returns 1 if this is running as a trusted macro or 0 if it is not. ===Usage=== <source lang="mtmacro" line> [h: trusted = isTrusted()] </s...) |
No edit summary |
||
Line 10: | Line 10: | ||
===Example=== | ===Example=== | ||
[[Map:fog of war|fog of war]]. | |||
<source lang="mtmacro" line> | <source lang="mtmacro" line> | ||
[r, if(isTrusted()): "I can run the trusted functions! yay!")] | [r, if(isTrusted()): "I can run the trusted functions! yay!")] | ||
</source> | </source> |
Revision as of 16:05, 6 December 2008
Function isTrusted
Returns 1 if this is running as a trusted macro or 0 if it is not.
Usage
[h: trusted = isTrusted()]
Example
[r, if(isTrusted()): "I can run the trusted functions! yay!")]