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

Is there a way to display the name of a card when you place it on the map?

Essentially I'm using the deck feature to place down some homebrew tarot-style cards. However, in the moment, I might forget what each card looks like, it would be nice to be able to see the name of the card that was drawn versus having to look it up manually in my notes if I'm having a mindblank moment. Is there someway to show the name of the card either on the card or under it?
1599773737
The Aaron
Roll20 Production Team
API Scripter
I have an API script for that: on('ready', () => { const titleCard = function(o){ let card = getObj('card',o.get('cardid')); if( 0 === o.get('currentSide') ) { o.set({ name: card.get('name'), showname: true, showplayers_name: true }); } else { o.set({ showname: false, showplayers_name: false }); } }; on('add:card',titleCard); on('change:card',titleCard); }); Will show the name on a card played to the table if it is face up.
1599773936
The Aaron
Roll20 Production Team
API Scripter
That will show the name to everyone, but it could be modified to only show it to the GM or the GM and the player that drew it, etc.