//===== eAthena Script ======================================= //= War of Emperium - gefg_cas05 Treasure Room Script //===== By: ================================================== //= holyAngelX (1.0) //===== Current Version: ===================================== //= 1.1 //===== Compatible With: ===================================== //= eAthena 0.1+; RO Episode 4+ //===== Description: ========================================= //= Treasure Room Script in gefg_cas05 //===== Additional Comments: ================================= //= 1.1 by Akaru and ho|yAnge|X //============================================================ //================================================ // Exit Treasure Room Switch //================================================ gefg_cas05.gat,149,107,0 script Switch 111,{ mes " "; mes "There is little switch over here"; mes "Would you like to pull the switch down?"; next; menu "Yes",L1,"No",L2; L1: warp "gefg_cas05.gat",70,53; L2: close; } //================================================ // Treasure Spawning Script //================================================ gefg_cas05.gat,144,110,0 script Treasure_B05 -1,{ OnClock1200: SetCastleData "gefg_cas05.gat",4,0; SetCastleData "gefg_cas05.gat",5,0; KillMonster "gefg_cas05.gat","Treasure_B05::TreasureDied"; set $Economy9,GetCastleData("gefg_cas05.gat",2); if ($Economy9 > 100) break; if (GetCastleData("gefg_cas05.gat",1) == 0) break; set $boxnum9,GetCastleData("gefg_cas05.gat",2)/5+4; goto TreasureCheck; TreasureCheck: if ($boxnum9 <= 0) break; set $boxid9,rand(4); goto TreasureSpawn; TreasureSpawn: if ($boxid9 > 2) goto TreasureSpawn2; areamonster "gefg_cas05.gat",140,106,147,113,"Treasure Chest",1342,1,"Treasure_B05::TreasureDied"; set $boxnum9,$boxnum9-1; if ($boxnum9 <= 0) break; goto TreasureCheck; TreasureSpawn2: areamonster "gefg_cas05.gat",140,106,147,113,"Treasure Chest",1343,1,"Treasure_B05::TreasureDied"; set $boxnum9,$boxnum9-1; if ($boxnum9 <= 0) break; goto TreasureCheck; TreasureDied: MapAnnounce "gefg_cas05.gat","Treasure Chest Broken Open",17; break; }