getOwned: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
==Function getOwned== | ==Function getOwned== | ||
{{TrustedOnlyFunction}} | {{TrustedOnlyFunction}} | ||
Returns a [[Macros:string list|string list]] containing the ids of the [[Token:token|token]]s on the current [[Map:map|map]] that are owned by the specified player. | Returns a [[Macros:string list|string list]] containing the ids of the [[Token:token|token]]s on the current [[Map:map|map]] that are owned by the specified player. |
Revision as of 15:06, 6 December 2008
Function getOwned
This function can only be called from a trusted macro
Returns a string list containing the ids of the tokens on the current map that are owned by the specified player.
[h: tokenIds = getOwned(player)]
[h: tokenIds = getOwned(player, delim)]
delim is the delimiter used to separate the values in the string list which defaults to ',' if not specified.
Examples
To display the ids of all of the tokens on the current map by the player use.
[h: ids = getOwned(getPlayerName())]
[foreach(id, ids, "<br>"): id]