getOwned: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(20 intermediate revisions by 8 users not shown) | |||
Line 1: | Line 1: | ||
= | {{stub|examples for all parameters}} | ||
{{ | {{MacroFunction | ||
{{ | |name=getOwned | ||
|trusted=true | |||
|version=1.3b48 | |||
|description=Returns a list containing the ids of the [[token|token]]s on the current [[Introduction to Mapping|map]] that are owned by the specified player. The type of the value returned depends on the delimiter parameter. | |||
* If the delimiter is not specified then a [[String List|string list]] is returned with the default value of {{code|","}} is used. | |||
* If the delimiter {{code|json}} then a [[JSON Array|json array]] is returned. | |||
* Otherwise a [[String List|string list]] is returned with the delimiter passed in. | |||
| |||
|usage= | |||
< | <syntaxhighlight lang="mtmacro" line> | ||
getOwned() | |||
getOwned(player) | |||
</ | getOwned(player, delim) | ||
getOwned(player, delim, mapRef) | |||
</syntaxhighlight> | |||
'''Parameters''' | |||
{{param|player|The player for which you want to retrieve the owned tokens, defaults to the current player.}} | |||
To display the ids of all of the [[Token | {{param|delim|the delimiter used to separate the values in the [[String List|string list]] which defaults to {{code|","}} if not specified.}} | ||
< | {{param|mapRef|The Name or ID of the map to find the tokens. Defaults to the current map.}} | ||
|example= | |||
To display the ids of all of the [[Token|token]]s on the current [[Introduction to Mapping|map]] by the Player use. | |||
<syntaxhighlight lang="mtmacro" line> | |||
[h: ids = getOwned(getPlayerName())] | [h: ids = getOwned(getPlayerName())] | ||
[foreach(id, ids, "<br>"): id] | [foreach(id, ids, "<br>"): id] | ||
</ | </syntaxhighlight> | ||
|changes= | |||
{{change|1.3b49|Added {{code|json}} delimiter option.}} | |||
{{change|1.5.8|Added {{code|mapname}} parameter, made {{code|player}} parameter optional.}} | |||
|also= | |||
{{func|getOwnedNames}} | |||
}} | |||
[[Category:Find Function]] |
Latest revision as of 23:59, 24 April 2023
This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.
This article needs: examples for all parameters
getOwned() Function
Note: This function can only be used in a Trusted Macro
• Introduced in version 1.3b48
Returns a list containing the ids of the tokens on the current map that are owned by the specified player. The type of the value returned depends on the delimiter parameter.
- If the delimiter is not specified then a string list is returned with the default value of
","
is used. - If the delimiter
json
then a json array is returned. - Otherwise a string list is returned with the delimiter passed in.
Usage
getOwned()
getOwned(player)
getOwned(player, delim)
getOwned(player, delim, mapRef)
Parameters
player
- The player for which you want to retrieve the owned tokens, defaults to the current player.delim
- the delimiter used to separate the values in the string list which defaults to","
if not specified.mapRef
- The Name or ID of the map to find the tokens. Defaults to the current map.
Example
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]
See Also
Version Changes
- 1.3b49 - Added
json
delimiter option. - 1.5.8 - Added
mapname
parameter, madeplayer
parameter optional.