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

Let players Resize their own token?

Im playing as a Rune Knight fighter in my one of my campaigns and one of there main abilities is growing to size large for a damage buff and advantage of strength checks, But the problem is that it only lasts a minute and I do it almost every combat so I am constantly having to ask the dm to resize my token. Please can someone let me know if there is any way to let myself do it so I can make my dms life easier.
1627953640
keithcurtis
Forum Champion
Marketplace Creator
API Scripter
It can be done with an API script (token-mod, for example), but players don't have that sort of manual control, unfortunately. Does your GM have a pro subscription?
When they accidentally allowed resizing of tokens for a while with a bug I noticed a bug, which you can duplicate with token mods method.  Enlarging goes over dynamic lighting lines.  
I do believe my dm has pro would the api script be something complicated to do?
1628008865
keithcurtis
Forum Champion
Marketplace Creator
API Scripter
Super easy. Barely an inconvenience. Here are the token mod commands that will do this: giant size: !token-mod --set width|2g height|2g normal size: !token-mod --set width|1g height|1g If you want to put it into a  Chat Menu , and are using the D&D 5th Edition by Roll20 Sheet, here is some prettier code you can put into a Token Action Button. Note that this will also toggle your Giant's Might damage bonus if it is the first global damage modifier on your sheet (If it is the second, change $0 to $1 and so on) This requires the GM to have installed the ChatSetAttr script: /w @{selected|character_name} &{template:npcaction} {{rname=Size Change}} {{description=[Medium](!token-mod --set width|1g height|1g
!setattr --sel --silent --repeating_damagemod_$0_global_damage_active_flag|0) [Large](!token-mod --set width|2g height|2g
!setattr --sel --silent --repeating_damagemod_$0_global_damage_active_flag|1)}} Without the ChatSetAttr script, and without the damage toggle, you can use this: /w @{selected|character_name} &{template:npcaction} {{rname=Size Change}} {{description=[Medium](!token-mod --set width|1g height|1g [Large](!token-mod --set width|2g height|2g)}}
1628009655
timmaugh
Forum Champion
API Scripter
keithcurtis said: Super easy. Barely an inconvenience. Well, alright then!
Thank you so much ill be sure to show ny dm this