As 1 monster is killed, 1 monster is spawned?
poring_w01,0,0,0 script unlimited_deadbranch -1,{
end;
OnInit:
monster strnpcinfo(4),0,0, "--ja--",-1, 5, strnpcinfo(3)+"::OnMyMobDead";
end;
OnMyMobDead:
monster strnpcinfo(4),0,0, "--ja--",-1, 1, strnpcinfo(3)+"::OnMyMobDead";
end;
}
Or they kill all 5 monsters, then 5 spawn all at once?
poring_w01,0,0,0 script unlimited_deadbranch -1,{
end;
OnInit:
OnMyMobDead:
if (mobcount(strnpcinfo(4), strnpcinfo(3)+"::OnMyMobDead") == 0)
monster strnpcinfo(4),0,0, "--ja--",-1, 5, strnpcinfo(3)+"::OnMyMobDead";
end;
}