Seelenschmied said: First: When my players hit the "Hit"-Button, they got this in chat: "Seelenschmied (GM) uses 'Testsword' and hits with [3.6] Degree(s) of Success into Hitzone [13]!" But what I want to have in chat is this: "Seelenschmied (GM) uses 'Testsword' and hits with [3.6] Degree(s) of Success into Hitzone [Left Arm]!" My charsheet command is this: <div style="width:16%"> <button name="roll_meleehit" type="roll" value="/me uses '@{meleeweaponname}' and hits with [[(@{WeaponSkill}+@{advanceWS}+?{Modifikator|0}-1d100)/10]] Degree(s) of Success into Hitzone [[1d100]]!"> <label>Hit</label> </button> </div> The hitzones are: Range 1 - 10 = Head Range 11 - 20 = Right Arm Range 21 - 30 = Left Arm Range 31 - 70 = Body Range 71 - 85 = Right Leg Range 86 - 100 = Left Leg Can someone help me with this? For this, you'll want to use a rollable table. You set up the rollable table with a name (something like Hitzone), and then you'd add values for each of the categories above. You'd want to give each Hitzone the appropriate weighting (e.g. Head, Right Arm, and Left Arm all have a weighting of 10, Body has a weighting of 40, Right Leg and Left Leg each have a weighting of 15). Then to call the table your button would look like this (again, assuming you called the rollable table Hitzone): <button name="roll_meleehit" type="roll" value="/me uses '@{meleeweaponname}' and hits with [[(@{WeaponSkill}+@{advanceWS}+?{Modifikator|0}-1d100)/10]] Degree(s) of Success into Hitzone [[1t[Hitzone]]]!"> Seelenschmied said: Second: In the r20-char sheet, the characteristics are all in the left column. In the original sheet, all the characteristics are on the same line. This I want to have in my sheet to. But I didn't get it. Can you help me with this too? For this I'd probably do something like: <div class="sheet-row">
<div class="sheet-characteristics">
<!-- Weapon Skill Stuff goes here -->
</div>
<div class="sheet-characteristics">
<!-- Ballistic Skill Stuff goes here -->
</div>
<div class="sheet-characteristics">
<!-- Strength Stuff goes here -->
</div>
<div class="sheet-characteristics">
<!-- Toughness Stuff goes here -->
</div>
<div class="sheet-characteristics">
<!-- Agility Stuff goes here -->
</div>
<div class="sheet-characteristics">
<!-- Intelligence Stuff goes here -->
</div>
<div class="sheet-characteristics">
<!-- Perception Stuff goes here -->
</div>
<div class="sheet-characteristics">
<!-- Will Power Stuff goes here -->
</div>
<div class="sheet-characteristics">
<!-- Fellowship Stuff goes here -->
</div>
</div> Then the accompanying CSS would look something like: .charsheet .sheet-characteristics {
display: inline-block;
width: 87px; /*or whatever width you want*/
height: 87px; /*or whatever width you want*/
border: solid 1px black;
text-align: center;
margin-left: -3.75px; /*or whatever width you want*/
margin-right: 0px; /*or whatever width you want*/
/* other styling stuff that would apply to the boxes */
}