getMacroLocation

From RPTools Wiki
Revision as of 18:27, 14 March 2023 by Taustin (talk | contribs) (Text replacement - "source>" to "syntaxhighlight>")
Jump to navigation Jump to search

getMacroLocation() Function

Introduced in version 1.3b48
Returns the location of the macro being executed, the return value will be "chat", "global", "campaign" or the label of the token the macro resides on (e.g. "Lib:Utilities" or "Token:Orc".) Standard PC and NPC tokens will have their label prefixed with Token:.

Usage

<source lang="mtmacro" line> getMacroLocation() </syntaxhighlight>

Example

<source lang="mtmacro" line>

[h: MacroLocation = getMacroLocation()] [if(MacroLocation == "chat", "You are running from chat", "You are running from "+MacroLocation]

</syntaxhighlight>


Version Changes

  • 1.3b51 - Now accurately reports where the macro button resides.