Hi, does anyone have or know where I can dowload a Necro Book script for 51a? Also anyone know how I can get a monster to cast summon undead? Thanks
Hey drew,
You can make a book.. but you would have to script GUMPS and other things. Most servers use Necro scrolls to go around the GUMPING.
src.newnpc 0900
var.p=<src.p>
src.p=111 11 1
src.act.newitem=020a7 //Summon ID
src.act.act.morep=40 10 1
src.act.act.attr=026
src.act.act.link=<src.uid>
src.act.equip <src.act.act.uid>
src.p=<var.p>
also if you can use @spelleffect
on=@spelleffect
if <src.actarg1>=026 //summon actions
effect xxxxxxx //The effect of smoke
sound spell_dispel
remove
return 1
endif
return 0