diff options
Diffstat (limited to 'npc/guild/old/guardian/gefg_cas05_guardian.txt')
-rw-r--r-- | npc/guild/old/guardian/gefg_cas05_guardian.txt | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/npc/guild/old/guardian/gefg_cas05_guardian.txt b/npc/guild/old/guardian/gefg_cas05_guardian.txt deleted file mode 100644 index c7949af86..000000000 --- a/npc/guild/old/guardian/gefg_cas05_guardian.txt +++ /dev/null @@ -1,67 +0,0 @@ -//===== eAthena Script ======================================= -//= War of Emperium - gefg_cas05 guardians script -//===== By: ================================================== -//= holyAngelX (1.0) -//===== Current Version: ===================================== -//= 1.2 -//===== Compatible With: ===================================== -//= eAthena 0.1+; RO Episode 4+ -//===== Description: ========================================= -//= Guardians Spawn Script in gefg_cas05 -//===== Additional Comments: ================================= -//= 1.1 by joedukk -//= 1.2 by Akaru and Valaris -//============================================================ - -gefg_cas05.gat,194,184,0 script Guardian_B05 -1,{ -OnAgitInit: - if (GetCastleData("gefg_cas05.gat",10) <= 0) goto Guardian2; - guardian "gefg_cas05.gat",54,149,"Soldier Guardian",1287,1,"Guardian_B05::OnGuardianDied",0; - goto Guardian2; -Guardian2: - if (GetCastleData("gefg_cas05.gat",11) <= 0) goto Guardian3; - guardian "gefg_cas05.gat",80,31,"Soldier Guardian",1287,1,"Guardian_B05::OnGuardianDied",1; - goto Guardian3; -Guardian3: - if (GetCastleData("gefg_cas05.gat",12) <= 0) goto Guardian4; - guardian "gefg_cas05.gat",52,32,"Soldier Guardian",1287,1,"Guardian_B05::OnGuardianDied",2; - goto Guardian4; -Guardian4: - if (GetCastleData("gefg_cas05.gat",13) <= 0) goto Guardian5; - guardian "gefg_cas05.gat",77,149,"Archer Guardian",1285,1,"Guardian_B05::OnGuardianDied",3; - goto Guardian5; -Guardian5: - if (GetCastleData("gefg_cas05.gat",14) <= 0) goto Guardian6; - guardian "gefg_cas05.gat",65,18,"Archer Guardian",1285,1,"Guardian_B05::OnGuardianDied",4; - goto Guardian6; -Guardian6: - if (GetCastleData("gefg_cas05.gat",15) <= 0) goto Guardian7; - guardian "gefg_cas05.gat",66,54,"Knight Guardian",1286,1,"Guardian_B05::OnGuardianDied",5; - goto Guardian7; -Guardian7: - if (GetCastleData("gefg_cas05.gat",16) <= 0) goto Guardian8; - guardian "gefg_cas05.gat",187,43,"Knight Guardian",1286,1,"Guardian_B05::OnGuardianDied",6; - goto Guardian8; -Guardian8: - if (GetCastleData("gefg_cas05.gat",17) <= 0) goto NoSpawn; - guardian "gefg_cas05.gat",167,43,"Knight Guardian",1286,1,"Guardian_B05::OnGuardianDied",7; - break; - -OnAgitEliminate: - //Kill all guardians on castle takeover - //killmonster "gefg_cas05.gat","Guardian_B05::GuardianDied"; - break; - -OnGuardianDied: - // Event when Guardian dies - MapAnnounce "gefg_cas05.gat","A Guardian Has Fallen",17; - break; - -OnAgitEnd: - break; - -NoSpawn: - break; - -} -//------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |