Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

[FENG SHUI 2] - "Shot Clock" Initiative Tracker?

Any ideas on simple/fast way to do the Shot Clock for Feng Shui 2 with the turn order tracker?  Basic way it works is traditional roll d6+Y for a total, but this basically creates action points you spend to perform actions, reducing your total. 
1461037154

Edited 1461043720
Lithl
Pro
Sheet Author
API Scripter
You could use macros with &{tracker:-} in them for this. For example, have an initiative macro: /me rolls for initiative! [[d6+@{selected|initiative} &{tracker}]] Which would put the selected token in the turnorder with the appropriate initiative value. Then another macro later like: /me swings his sword sword [[d6+@{selected|strength}]] damage Costs [[2 &{tracker:-}]] initiative And that would reduce the selected token's initiative by 2. Note that this wouldn't prevent you from going into negative initiative values, but it would let you keep track of things.
For reasons beyond my knowledge, syntax for  Adding Values is actually &{tracker : +} or &{tracker : -}
1461043706
Lithl
Pro
Sheet Author
API Scripter
Derp, thanks Silvyre. =)
Ok, that reduces the initiative value, but is there a way to get the list to autosort after the change? 
1461074163

Edited 1461074309
The Aaron
Pro
API Scripter
Not without an API script. However, you can use this bookmarklet to make a convenient link that will sort descending without needing to click multiple buttons: javascript:(function(){ "use strict"; $('.ui-button-text')[0].click(); setTimeout(function(){ $('.btn.sortlist_numericdesc')[0].click(); },100); }());  In Chrome, just add a bookmark with that as the url and when you want to sort the turn order, click the link.  You can put it in the quick bar to make it really convenient. =D
Well, that works. Thanks