ckb Minion Staff member Oct 2, 2014 #1 It sure would be awesome to have allow for a to_thrall($skill[sk]) for all the Pastamancer bind thrall skills. Currently: Function 'to_thrall( skill )' undefined.
It sure would be awesome to have allow for a to_thrall($skill[sk]) for all the Pastamancer bind thrall skills. Currently: Function 'to_thrall( skill )' undefined.
Bale Minion Oct 2, 2014 #2 This works! Code: thrall to_thrall(skill sk) { foreach t in $thralls[] if(t.skill == sk) return t; return $thrall[none]; }
This works! Code: thrall to_thrall(skill sk) { foreach t in $thralls[] if(t.skill == sk) return t; return $thrall[none]; }
ckb Minion Staff member Oct 2, 2014 #3 Thanks Bale. That is better than the hack I threw together. I can use that for now.