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

Assistance Query

Hey there, I'm just wondering if there is a way to automate this.. I have a game which is on Jumpgate and using the D&D 2014 5ed by roll20 sheet.  One of my players has an ability that changes things around her character according to the level she has of it (she has various ways to change the level).  At the moment, I've just got it set as a resource on her sheet.  Is there some way I can get the new value sent to me as GM (privately) when she changes the value? Just trying to make one less thing for me to monitor :) Thanks in advance..
There is a mod called chatsetattr that can make changes on the 2014 sheet and could automate things for you. You can set it up to change an attribute for example and have it reduce the resource at the same time.
The simplest approach is a basic macro: /w gm My Resource Level is @{Character Name|repeating_resource_$0_resource_left} You will likely need to change the repeating resource reference depending on which specific resource it is. If you want to use ChatSetAttr to make it easier to change, you can pair that with a script command (aircoded and untested): !setattr --name Character Name --modb --repeating_resource_$0_resource_left|[[ @{selected|repeating_resource_$0_resource_left} + (?{Resource change?|0}) ]] /w gm My Resource Level is [[ @{selected|repeating_resource_$0_resource_left} + (?{Resource change?|0}) ]] If you want to automate the detection of a change and automatically report that, e.g. if the player manually changes the value on their character sheet, and you don't want the player to have to click a macro to report to you, then you'll have to create a custom listener script for that.
Thank you both :)