RPTools

Personal tools
From MapToolDoc

setAllStates

 This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.
 This article needs: Examples using new functionality.

Contents

setAllSates() Function

Introduced in version 1.3b40

Sets all of the States of a Token to on (true(1)) or off (false(0)).

Usage

  1. setAllStates(value)
  1. setAllStates(value, id)

Parameter

  • value - If all states should be set on or off, true(1) or false(0).
  • id - The token id of the token that should have its States set, defaults to the Current Token.  Note: This parameter can only be used in a Trusted Macro

Examples

Set all Token States on

  1. [h: setAllStates(1)]

Set all Token States off

  1. [h: setAllStates(0)]

See Also

State, getState(), setState()

Version Changes

  • 1.3b51 - Added id parameter option.