Currently in process of setting something up to either post to chat privately for the person doing the macro or publicly for group to see.
Friend helped me finally get it in a mostly functional spot with one issue of formatting;
[h: abort(input(
"DestroyCheck|0|Do you want others to see this chart?|CHECK"))]
[h: DestroyTable =
"<tr>
<td style = 'text-align:center'>
5th Level
</td>
<td>
Destroys Undead of CR 1/2 or lower
</td>
</tr>
<tr>
<td style = 'text-align:center'>
8th Level
</td>
<td>
Destroys Undead of CR 1 or lower
</td>
</tr>
<tr>
<td style = 'text-align:center'>
11th Level
</td>
<td>
Destroys Undead of CR 2 or lower
</td>
</tr>
<tr>
<td style = 'text-align:center'>
14th Level
</td>
<td>
Destroys Undead of CR 3 or lower
</td>
</tr>
<tr>
<td style = 'text-align:center'>
17th Level
</td>
<td>
Destroys Undead of CR 4 or lower
</td>
</tr>"
]
[h: thetable = '<div style="background-color: #b5b5b5; color: black; padding-top:2px; padding-bottom:5px; padding-left:8px; padding-right:8px;">
<b>'+Name+'</b>
<table border="1" cellspacing = "0" cellpadding = "3" style = "background-color: white; color: black;">
<tr><td style = "width:60px; text-align:center; padding-left: 5px; padding-right: 5px;">Cleric Level</td><td style = "text-align:center">Undead CR</td></tr>'
+DestroyTable+
'</table>
</div>']
[IF(!DestroyCheck), CODE:{
[s: thetable]
};{
[r: thetable]
}]``` this is the code and the image is the 2 results....is there a way to have "thetable =" NOT show up for the 'self post'? Have it be hidden or not showing or something?
I presume the << >> above/below the post is also unavoidable or....?