Difference between revisions of "Script:StatusInfo"
From Roll20 Wiki
Andreas J. (Talk | contribs) m |
|||
(2 intermediate revisions by 2 users not shown) | |||
Line 6: | Line 6: | ||
|code=StatusInfo}} | |code=StatusInfo}} | ||
− | StatusInfo shows condition descriptions whenever a statusmarker is set or when the command | + | {{orange| this haven't been updated since 2018, so [[API:Script_Index|other API are likely better]] to use that keep up with roll20's newer features.}} |
+ | StatusInfo shows condition descriptions whenever a statusmarker is set or when the command <code>!condition</code> is used, e.g: <code>!condition prone</code>. | ||
It is fully customizable with extra conditions, and has the ability to add/remove/toggle abilities on tokens. | It is fully customizable with extra conditions, and has the ability to add/remove/toggle abilities on tokens. | ||
− | It works | + | It works together with [[TokenMod]] and with the script author's other APIs; {{repo|RobinKuiper/Roll20APIScripts/tree/master/DeathTracker DeathTracker}} and {{repo|RobinKuiper/Roll20APIScripts/tree/master/InspirationTracker InspirationTracker}} |
+ | |||
+ | See screenshots on the code page (right side menu). | ||
== Commands == | == Commands == | ||
Line 34: | Line 37: | ||
== Installation and Configuration == | == Installation and Configuration == | ||
− | + | Install from the one-click menu, or copy the source code available from the menu on the right. Paste the code into a new script in your campaign's [[API:Use_Guide#The_Script_Editor|API Script Editor]]. Save the new script and it will be available inside your campaign. | |
== Changelog == | == Changelog == |
Latest revision as of 15:47, 15 May 2021
Version: 0.3.3
Last Modified: 22-04-2018
Code: StatusInfo
Dependencies: None
Conflicts: None
this haven't been updated since 2018, so other API are likely better to use that keep up with roll20's newer features. |
StatusInfo shows condition descriptions whenever a statusmarker is set or when the command !condition
is used, e.g: !condition prone
.
It is fully customizable with extra conditions, and has the ability to add/remove/toggle abilities on tokens.
It works together with TokenMod and with the script author's other APIs; DeathTracker and InspirationTracker
See screenshots on the code page (right side menu).
[edit] Commands
Command Description !condition Shows the condition menu, where you can easily toggle conditions on selected token(s). If you have (a) token(s) selected when you use this command it will show the current conditions. !condition config Shows the config menu !condition [condition name] Shows the description of the condition entered. !condition add [condition name] Adds the condition(s) given to the selected token(s), eg. `!condition add prone paralyzed`. !condition remove [condition name] Removes the condition(s) given from the selected token(s). !condition toggle [condition name] Toggles the condition(s) given from the selected token(s). !condition config export Exports the config (with conditions), also possible through the config menu. !condition config import [Exported Content] Imports the config (with conditions), also possible through the config menu.
[edit] Installation and Configuration
Install from the one-click menu, or copy the source code available from the menu on the right. Paste the code into a new script in your campaign's API Script Editor. Save the new script and it will be available inside your campaign.
[edit] Changelog
v0.3.3 (22-04-2018)
- Create/edit conditions
- Add/remove/toggle conditions on tokens
- Import/Export configuration