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
This post has been closed. You can still view previous posts, but you can't post any new replies.

Card Names on Table

You can name cards when you add them to a deck. But the virtual tabletop doesn't really seem to care. For example, if you name a card and then drag it to the table as a token, it doesn't have a token name. Not sure if this is an error or grounds for a suggestion. Fixing it would definitely make token_name macros make a lot more sense in my games.
1418825403
The Aaron
Pro
API Scripter
I could probably write you a script that turns on show nameplate when cards are in the table.
1418831689

Edited 1418831705
Could you make it so that it doesn't show the nameplate (or unchecks "Players can see name") when the card is face-down? Because that would really help a lot.
1430924451
chris b.
Pro
Sheet Author
API Scripter
Second this. Especially for using any sort of tarot deck, the images can be hard to see unless we expand them. Showing the names would help make it a lot more usable. It should only be displayed when the cards are face up.
1430935823

Edited 1430942502
The Aaron
Pro
API Scripter
Robert R. said: Could you make it so that it doesn't show the nameplate (or unchecks "Players can see name") when the card is face-down? Because that would really help a lot. Yes. Sorry, missed this reply 4 months ago. =D
Are you planning on doing it? I've gotten used to waiting a while when I have a request for you, so I didn't bother with bumping :P
1430942556
The Aaron
Pro
API Scripter
If it works the way I think, it should be a trivial little script that monitors on('change:graphic',...) and checks a few things then flips the setting on/off. If that's the case, sure. =D
1431224337
The Aaron
Pro
API Scripter
Cheers! on('ready',function(){ "use strict"; var TitleCard = function(o,p){ var 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); })
1550175370
Roll20 Dev Team
Pro
Marketplace Creator
Thanks for the suggestion! After 30 days, Suggestions and Ideas with fewer than 10 votes are closed and the votes are refunded to promote freshness. Your suggestion didn't build the right momentum this time, but feel free to submit it again! We find that the best suggestions describe the problem you are having, and the solution you want. You can learn more about the process of making suggestions on the Roll20 Wiki! More details can be found here .