LoD_PRC8/_module/nss/firespawn5ofem.nss

14 lines
408 B
Plaintext
Raw Normal View History

2023-09-21 21:20:34 -04:00
void main()
{
object oWay = GetWaypointByTag("firespawns");
location lPos = GetLocation(oWay);
CreateObject(OBJECT_TYPE_CREATURE, "FireBoss", lPos, TRUE);
CreateObject(OBJECT_TYPE_CREATURE, "FireSpawn1", lPos, TRUE);
CreateObject(OBJECT_TYPE_CREATURE, "FireSpawn1", lPos, TRUE);
CreateObject(OBJECT_TYPE_CREATURE, "FireSpawn1", lPos, TRUE);
CreateObject(OBJECT_TYPE_CREATURE, "FireSpawn1", lPos, TRUE);
}