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

Tokenmod issues? Glitched or Updated?

I just found something odd with how tokenmod is behaving. I have about 20 multi-sided tokens in my game for wildshaping, shape shifting, etc.. Last session (2 weeks ago) my druid and shapeshifter had no problems transforming. Today's session however the tokens kept becoming assigned and unassigned to them without me changing a thing.  So is this a glitch in either tokenmod or roll20? or is it an update changing how multi-sided tokens work and if so how do I rework it to function the same for my players? How I have it now: Each form has a character sheet(just for the name and picture) with the main one having the actual character info. These are on a macro for each character with each form that character can be in the macro. Along with a "Choose Form" GUI that comes up when they press their button. I then have a roll action table and put in each token form that player can become. !token-mod {{   --set     ?{Choose Form| Fernando,currentside#1 represents#@{Fernando|character_id}       | Black Fox,currentside#2 represents#@{Black Fox|character_id}       | Eyes, currentside#3 represents#@{Eyes|character_id}     }          }} This use to work seamlessly but now it keeps reassigning the token to another character sheet. Taking the players control away from the token and sometimes turning off there ability to see if DL is on. The character sheets aren't even related to the token sometimes. (Example: Druid: "I wildshape into a wolf" Token changes to wolf token but token is now assigned to a NPC fisherman's character sheet they met one time). The players are able to right-click choose "Multi-Sided" and "Choose Side" and that changes the token without reassigning it. But this isn't practical for my Druid who currently has 20 wildshapes to choose from.
1689568430
keithcurtis
Forum Champion
Marketplace Creator
API Scripter
Hi Cherissa! My first guess would be to look for duplicate characters who share the same name. Be sure to check the archived folder as well.
In searching for duplicate characters and other potential typos I fixed the issue, Although it still wasn't an issue before with the exact same tokens 2 weeks ago which is weird. The problem was in the macro code        | Black Fox,currentside#2 represents#@{Black Fox|character_id} where it says "@{Black Fox|character_id}" this now changes the token assignment from Fernando's character sheet to the Black Fox's character sheet. So switching it to        | Black Fox,currentside#2 represents#@{Fernando|character_id} Fixed it. This makes a bit more sense to code than the way I had been doing it for so long. So I'm guesses tokenmod got updated a little. Thanks!!