Amon_PRC8/_module/nss/suppboss.nss

11 lines
365 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
void main()
{
int nDisperse = d6(1);
location lLocation = GetLocation(GetWaypointByTag("Kel_Hero_Supp_Spwn_" + IntToString(nDisperse)));
object oTarget = GetObjectByTag("KelSuppBoss");
DestroyObject(oTarget);
int nRandom = d6( 1 ) +1;
string hero = "KuljherHero" + IntToString(nRandom);
CreateObject(OBJECT_TYPE_CREATURE, hero, lLocation, FALSE, "KelSuppBoss");
}