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 it possible to associate several images per character ?

1415011475
tontione
Pro
Sheet Author
Hello, i would like to associate several images per character. Playing Pendragon, i would like : 1 image for the portrait 1 image for the coat of arms 1 image for the map of his manor 1 image for the castle etc. And integrate all this images into the character window , either in Bio & intro tab or Character sheet tab. Is it possible ? And is it possible and easy to use files from my Roll20 personnal library ? I know how to put one picture as avatar, and one as token display, but i didn't find any way to display more pictures, for exemple into text notes. I know how to display external images on character sheet, but not how to associate images with a specific character. Can anybody help me ?
I would ether use handouts linked to the character sheet <a href="https://wiki.roll20.net/Journal#Link_Between_Journ" rel="nofollow">https://wiki.roll20.net/Journal#Link_Between_Journ</a>... or roll-able table for that. tables bottom of the page <a href="https://wiki.roll20.net/Card_Decks_and_Rollable_Ta" rel="nofollow">https://wiki.roll20.net/Card_Decks_and_Rollable_Ta</a>... Hope that helps.
1415028861
vÍnce
Pro
Sheet Author
Here's a good tutorial for creating a rollable table for images. <a href="https://www.youtube.com/watch?v=-bL8GklIh7U" rel="nofollow">https://www.youtube.com/watch?v=-bL8GklIh7U</a>
1415030591

Edited 1415031689
tontione
Pro
Sheet Author
Linked handouts is a great feature, i didn't know it. But it's not exactly what i want : i would like to display this pictures in the character window ! Say You are looking the Bio & info tab of a knight Character; it would be nice too see his portrait (actually i can do this with the avatar area) AND his coat of Arms, in the same window ! With a linked handout i will see a text link, and have to click it to open the coat of arm picture in a new window opened above. ----------------------- I don't see how a rollable table can help me for this in any way.
1415040608
Finderski
Pro
Sheet Author
Compendium Curator
You could use Photoshop or Gimp (or some other graphics program) and splice them all together into one image and put that in the avatar. Just a thought. The reason the rollable table was suggested is because you could have a multisided token and then you could just choose which picture you wanted. To accomplish that you create a rollable table and put it on the "table" as a multisided token. Then you attache it the character sheet as the token for the character. That's one way people handle polymorph, etc.
1415041953
The Aaron
Roll20 Production Team
API Scripter
Not precisely what you're asking for, but you can dump pictures to the chat with a script like this: on('ready', function() { on('chat:message', function(msg) { if (msg.type == "api" && msg.content.indexOf("!pic") !== -1) { var piclink = msg.content.split(' ')[1]; var fPart = "&lt;div style='box-shadow: 3px 3px 2px #888888; font-family: Verdana; text-shadow: 2px 2px #000; text-align: center; vertical-align: middle; padding: 1px 1px; margin-top: 0.1em; border: 1px solid #000; border-radius: 8px 8px 8px 8px; color: #FFFFFF;" var tPic = fPart + "background-color:#666666;'&gt;● " + msg.who + " Shared a pic: ●&lt;/div&gt;"; var Pic = fPart + "background-color:#AAAAAA;'&gt;&lt;img src='" + piclink + "'&gt;&lt;/div&gt;"; sendChat('', "/direct " + tPic + Pic); }; }); }); Depending on when you want to show it, it's another option for you. !pic <a href="https://img0.etsystatic.com/017/0/6036607/il_570xN.548391144_2y7m.jpg" rel="nofollow">https://img0.etsystatic.com/017/0/6036607/il_570xN.548391144_2y7m.jpg</a>