RPTools

Personal tools
From MapToolDoc

isOwner

Contents

isOwner() Function

Introduced in version 1.3b48

Returns true(1) if the given Player is an owner of a specific Token.

Usage

  1. isOwner()
  1. isOwner(player)
  1. isOwner(player, id)

Parameters

  • plyer - The name of the player to check for ownership, defaults to the Current Player.
  • id - The token id of the token which is checked for ownership, defaults to the Current Token.  Note: This parameter can only be used in a Trusted Macro

Examples

Returns You can edit me. if the Current Player is an owner of the Current Token.

  1. [r, if(isOwner()): "You can edit me."]

Returns Azhrei can edit me. if the given Player is an owner of the given Token.

  1. [h: id = getSelected() ]
  2. [r, if(isOwner("Azhrei", id)): "Azhrei can edit me."]

See Also

getOwners(), isOwnedByAll()

Version Changes

  • 1.3b51 - Added id parameter option.