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

Any way to display information from character sheets on the Page?

I'd like to keep some character attributes "out in the open" so people are reminded of what they are - is there any way to display information from character sheets directly on the "tabletop"?
1458677508
Ziechael
Forum Champion
Sheet Author
API Scripter
While not directly on the tabletop you could write a macro that outputs the desired stat values to the chat and save it as a global macro for the players to use whenever they need a refresher?
That's a good stopgap, at least. :)
1458726609
Ziechael
Forum Champion
Sheet Author
API Scripter
The next best would be a handout that (powered by the API) extracts and stores the values desired in a table or list which the players have access to and can have minimised on the TT for quick reference? I'm not sure there is such a script but I'm sure it could be done...
1458734673
The Aaron
Pro
API Scripter
(It could be done)
Another option is to output to the chat, as mentioned above, but formatted as CSV, or using some other character as a separator. Then copy to a file and import into a spreadsheet, database, or word processor. Then you can make it look however you want.
I use two Macros: Monsters: /w GM&{template:default} {{name=@{selected|token_name}}} {{Move= @{selected|movement}}} {{Number = @{selected|appearing}}} {{Attack Damage=@{selected|monsterdmg}}} {{Special Attacks=@{selected|monsterspecattacks}}} {{Hit Dice= @{selected|hitdice}}} {{Morale= @{selected|monstermorale}}} {{Treasure = @{selected|treasure}}} {{X.P.= @{selected|monsterxp}}} Characters: /w gm @{Selected|Token_Name} /w gm [Race] @{Selected|race} /w gm [Strength] [[ @{Selected|Strength} ]] /w gm [Dexterity] [[ @{Selected|Dexterity} ]] /w gm [Constitution] [[ @{Selected|Constitution} ]] /w gm [Intelligence] [[ @{Selected|Intelligence} ]] /w gm [Wisdom] [[ @{Selected|Wisdom} ]] /w gm [Charisma] [[ @{Selected|Charisma} ]] /w gm [Class] @{Selected|class} [Level] @{Selected|level} /w gm Personality =[[ @{Selected|Intelligence} + @{Selected|Charisma} + @{Selected|level} ]] /w GM [[(@{selected|HP}/@{selected|HP|max})*100]] % health Not elegant, but gets the job done.