Amon_PRC8/_module/nss/birdroomkey.nss

50 lines
2.4 KiB
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
void main()
{
CreateObject(OBJECT_TYPE_PLACEABLE, "Mg_Rw_Bird", GetLocation(GetWaypointByTag("birdroom8")), TRUE);
DelayCommand(0.5, DestroyObject (GetNearestObjectByTag("BirdRoom07")));
DelayCommand(1.0, DestroyObject (GetNearestObjectByTag("BirdRoom06")));
DelayCommand(1.5, DestroyObject (GetNearestObjectByTag("BirdRoom05")));
DelayCommand(2.0, DestroyObject (GetNearestObjectByTag("BirdRoom04")));
DelayCommand(2.5, DestroyObject (GetNearestObjectByTag("BirdRoom03")));
DelayCommand(3.0, DestroyObject (GetNearestObjectByTag("BirdRoom02")));
DelayCommand(3.5, DestroyObject (GetNearestObjectByTag("BirdRoom01")));
DelayCommand(4.0, DestroyObject (GetNearestObjectByTag("BirdRoom01")));
DelayCommand(4.5, DestroyObject (GetNearestObjectByTag("BirdRoom02")));
DelayCommand(5.0, DestroyObject (GetNearestObjectByTag("BirdRoom03")));
DelayCommand(5.5, DestroyObject (GetNearestObjectByTag("BirdRoom04")));
DelayCommand(6.0, DestroyObject (GetNearestObjectByTag("BirdRoom05")));
DelayCommand(6.5, DestroyObject (GetNearestObjectByTag("BirdRoom06")));
DelayCommand(7.0, DestroyObject (GetNearestObjectByTag("BirdRoom07")));
DelayCommand(7.5, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(8.0, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(9.5, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(10.0, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(10.5, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(12.0, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(12.5, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(13.0, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(13.5, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(14.0, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(14.5, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(15.0, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(15.5, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(16.0, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(16.5, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(17.0, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(17.5, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
DelayCommand(18.0, DestroyObject (GetNearestObjectByTag("BirdRoom08")));
SetLocalInt(GetModule(), "birdroom", 0);
}