Does anyone know if the map mode supports a means for the players to click on a monster, npc or etc token that would show a larger picture of the creature or item. Not a larger image of the token, but a larger portrait image?
Amazing!Pat S. said:
https://wiki.roll20.net/Keyboard_Shortcuts
Miscellaneous
- Pressing "Z" with an object selected shows a larger version of that object in a modal popup
- Pressing Shift+Z as the GM shows all players the larger version of that object
!char-pic @{target|Who?|character_id}script
//version: 1.0 //use !char-pic to show a character's portrait in chat. on('ready', function() { on('chat:message', function(msg) { if (msg.type == "api" && msg.content.indexOf("!char-pic") !== -1) { var charid =msg.content.split(' ')[1]; var c = getObj('character',charid); if(c) { var fPart = "<div style='margin-left: -20px; box-shadow: 2px 2px 5px #000; padding: 0px; border: 2px solid #000; border-radius:5px; overflow: hidden;"; var Pic = fPart + "background-color:#FFF;'><img src='" + c.get('avatar') + "'></div>"; sendChat('', "/direct " + Pic); } }; }); });