All public logs

Jump to navigation Jump to search

Combined display of all available logs of RPTools Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 17:58, 14 December 2023 Taustin talk contribs created page getTokenName (Created page with "{{MacroFunction |name=getTokenName |description= Returns the name of the currently selected token. |usage= <syntaxhighlight lang="mtmacro" line> getTokenName() </syntaxhighlight> '''Parameters''' None. |examples= <syntaxhighlight lang="mtmacro" line> [h: z = getZoom()] [r:getTokenName())] </syntaxhighlight> |also= }} Category:Token Function")
  • 02:31, 13 December 2023 Taustin talk contribs created page setMapVision (Created page with "{{MacroFunction |name=setMapVision |version=1.14.0 |trusted=true |description= Changes the Map Vision setting of the current map. |usage= <syntaxhighlight lang="mtmacro" line> setMapVision(new setting) </syntaxhighlight> '''Parameters''' {{param|vision setting|{{code|off}}, {{code|day}} or {{code|night}}}} |examples= <syntaxhighlight lang="mtmacro" line> [setMapVision("day")] </syntaxhighlight> Will set map vision to day. <syntaxhighlight lang="mtmacro" line> [setMapVi...")
  • 02:24, 13 December 2023 Taustin talk contribs created page getMapVision (Created page with "{{MacroFunction |name=getMapVision |version=1.10.0 |description= Returns the current Map Vision setting. |usage= <syntaxhighlight lang="mtmacro" line> getMapVision() </syntaxhighlight> '''Parameters''' None |examples= <syntaxhighlight lang="mtmacro" line> [r:getMapVision()] </syntaxhighlight> Will return {{code|off}}, {{code|day}} or {{code|night}} |also= {{func|setMapVision}} }} Category:Map Function")
  • 22:25, 12 December 2023 Taustin talk contribs created page getMapIDs (Created page with "{{MacroFunction |name=getMapIDs |version=1.14.0 |description= Returns the unique IDs of all maps. |usage= <syntaxhighlight lang="mtmacro" line> getAllMapIDs() getAllMapIDs(delim)</syntaxhighlight> '''Parameters''' {{param|delim|The delimiter to use for a String List. If the value is json, then a JSON Array is returned.}} |examples= <syntaxhighlight lang="mtmacro" line> [r:getAllMapIDs()] </syntaxhighlight> returns: <syntaxhighlight lang="mtmacro" line> 399418EA6B644119A...")
  • 02:56, 12 December 2023 Taustin talk contribs created page getDefaultPropertyType (Created page with "{{MacroFunction |name=getDefaultPropertyType |version=1.14.0 |description= Returns the default property type for the campaign. |usage= <syntaxhighlight lang="mtmacro" line> getDefaultPropertyType() </syntaxhighlight> '''Parameters''' None. |examples= <syntaxhighlight lang="mtmacro" line> [r:getDefaultPropertyType()] </syntaxhighlight> }} returns <syntaxhighlight lang="mtmacro" line> Basic </syntaxhighlight> Category:Token")
  • 02:50, 12 December 2023 Taustin talk contribs created page getAllMapIDs (Created page with "{{MacroFunction |name=getAllMapMapIDs |version=1.14.0 |description= Returns the unique IDs of all maps. |usage= <syntaxhighlight lang="mtmacro" line> getAllMapIDs() getAllMapIDs(delim)</syntaxhighlight> '''Parameters''' {{param|delim|The delimiter to use for a String List. If the value is json, then a JSON Array is returned.}} |examples= <syntaxhighlight lang="mtmacro" line> [r:getAllMapMapIDs()] </syntaxhighlight> }} Category:Map Function")
  • 18:31, 11 December 2023 Taustin talk contribs created page getCurrentMapID (Created page with "{{MacroFunction |name=getCurrentMapID |version=1.14.0 |description= Returns the unique ID of the current map. |usage= <syntaxhighlight lang="mtmacro" line> getCurrentMapID() </syntaxhighlight> '''Parameters''' None. |examples= <syntaxhighlight lang="mtmacro" line> [r:getCurrentMapID()] </syntaxhighlight> Category:Map Function")
  • 06:24, 11 December 2023 Taustin talk contribs created page createMap (Created page with "{{MacroFunction |name=createMap |trusted=false |version=1.14.0 |description= Creates a map from the information in the required JSON object parameter. The JSON object must have {{code|name}}, and has optional {{code|config}} key/value pairs. |usage= <syntaxhighlight lang="mtmacro" line> createMap(name) createMap(name,config) </syntaxhighlight> '''Parameters''' {{param|name|A string with the name of the new map.}} {{param|name|A JSON object as described for the {{code|co...")
  • 05:29, 10 December 2023 Taustin talk contribs created page File:Get Drawing Id.png (DrawingID can be gotten from the Draw Explore panel.)
  • 05:29, 10 December 2023 Taustin talk contribs uploaded File:Get Drawing Id.png (DrawingID can be gotten from the Draw Explore panel.)
  • 05:24, 10 December 2023 Taustin talk contribs created page removeDrawing (Created page with "{{stub|Examples of usage.}} {{MacroFunction |name=removeDrawing |version=1.3b51 |description= Removes a drawing from the named map. |usage= <syntaxhighlight lang="mtmacro" line> removeDrawing(mapname, drawingID) </syntaxhighlight> '''Parameters''' {{param|mapname|The name of the map to find the token. Defaults to the current map.}} {{param|DrawingID|The ID of the drawing to be removed.}} Both are required. The Drawing ID can be gotten from the Draw Explorer panel. =...")
  • 23:59, 29 October 2023 User account Icarean talk contribs was created by Taustin talk contribs
  • 12:53, 19 September 2023 User account Jmr talk contribs was created by Taustin talk contribs
  • 03:15, 19 September 2023 Taustin talk contribs moved page onMapChange to onChangeMap without leaving a redirect
  • 03:14, 19 September 2023 Taustin talk contribs created page onMapChange (Created page with "==onChangeMap Macro== '''• Introduced in version 1.14.0''' A special macro that can be created on library tokens to have macro code automatically execute when the map is changed. This special macro is ideally suited for setting parameters specific to the map you've changed to. When an onChangeMap macro is executed automatically, it is considered a Trusted Macro. If you wish to use trusted functions within {{code|onCampaignLoad}} and execute it...")
  • 03:10, 19 September 2023 Taustin talk contribs created page setZoomLock (Created page with "{{MacroFunction |name=setZoomLock |version=1.14.0 |description= Sets the Lock Zoom setting to (0) unchecked, or (1) checked. |usage= <syntaxhighlight lang="mtmacro" line> setZoomLock(0/1) </syntaxhighlight> '''Parameters''' {{param|0/1|Clears/Checks Lock Zoom.}} |example= <syntaxhighlight lang="mtmacro" line> [r: setMoveLock(1)] </syntaxhighlight> Locks Player Movement }}")
  • 03:09, 19 September 2023 Taustin talk contribs created page setMoveLock (Created page with "{{MacroFunction |name=setMoveLock |version=1.14.0 |description= Sets the Lock Player Movement setting to (0) unchecked, or (1) checked. |usage= <syntaxhighlight lang="mtmacro" line> setMoveLock(0/1) </syntaxhighlight> '''Parameters''' {{param|0/1|Clears/Checks Lock Player Movement.}} |example= <syntaxhighlight lang="mtmacro" line> [r: setMoveLock(1)] </syntaxhighlight> Locks Player Movement |also= {{func|getMoveLock}} }}")
  • 03:08, 19 September 2023 Taustin talk contribs created page getMoveLock (Created page with "{{MacroFunction |name=getMoveLock |version=1.14.0 |description= Returns either {{true}} or {{false}} depending upon the Lock Player Movement setting. |usage= <syntaxhighlight lang="mtmacro" line> getMoveLock() </syntaxhighlight> |example= <syntaxhighlight lang="mtmacro" line> [r: getMoveLock()] </syntaxhighlight> returns true or false: <syntaxhighlight lang="mtmacro" line> true </syntaxhighlight> }} |also= {{func|setMoveLock}} }}")
  • 04:19, 13 May 2023 Taustin talk contribs deleted page Chat:Dice (content was: "#REDIRECT chat:Dice", and the only contributor was "Conversion script" (talk))
  • 04:19, 13 May 2023 Taustin talk contribs deleted page chat:Dice (content was: "#REDIRECT Dice Expressions")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)