
Hey smart people!
I'm trying to work on a macro for my necromancer to make attack rolls with multiple skeletons faster / easier. While I have a hard coded version that works I'd ideally like to find a way to make use of roll templates / character sheet rolls for better formatting and the ability to recognize crits.
My current script is a nested set of two, as follows:
Skelleton bow attack/damage ("Sbow"):
[[1d20+4]] - [[1d10+6]]
Skelleton multi attack macro ("SkelBowAtk"):
/emas "The Skeletons" attack!
?{Attacks|
1,#Sbow |
2,#Sbow
#Sbow |
3,#Sbow
#Sbow
#Sbow |
4,#Sbow
#Sbow
#Sbow
#Sbow |
5,#Sbow
#Sbow
#Sbow
#Sbow
#Sbow }
I have another set of two for the short swords. When I have tried previously to implement the nested query with either using templates or character sheet calls it broke the query and/or the template.
I do have a pro account so have access to the API if there is a script that makes this function but I was unable to find one myself.
Any help would be greatly appreciated! Thanks in advance!
-thedjally