Amon_PRC8/_module/nss/create_amon.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

11 lines
459 B
Plaintext

void main()
{
object oObject1 = GetObjectByTag("ClonePod1");
object oObject2 = GetObjectByTag("ClonePod2");
SetLocked (oObject1, FALSE);
SetLocked (oObject2, FALSE);
CreateObject(OBJECT_TYPE_CREATURE, "Amon", GetLocation(GetWaypointByTag("AmonSpawn")));
CreateObject(OBJECT_TYPE_CREATURE, "Alise", GetLocation(GetWaypointByTag("AliseSpawn")));
SetLocalInt(GetModule(), "MithPowered", GetLocalInt(GetModule(), "MithPowered") +1);
}