//===== eAthena Script ======================================= //= War of Emperium - gefg_cas04 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_cas04 //===== Additional Comments: ================================= //= 1.1 by Akaru and ho|yAnge|X //============================================================ //================================================ // Exit Treasure Room Switch //================================================ gefg_cas04.gat,117,123,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_cas04.gat",73,47; L2: close; } //================================================ // Treasure Spawning Script //================================================ gefg_cas04.gat,116,118,0 script Treasure_B04 -1,{ OnClock1200: SetCastleData "gefg_cas04.gat",4,0; SetCastleData "gefg_cas04.gat",5,0; KillMonster "gefg_cas04.gat","Treasure_B04::TreasureDied"; set $Economy8,GetCastleData("gefg_cas04.gat",2); if ($Economy8 > 100) break; if (GetCastleData("gefg_cas04.gat",1) == 0) break; set $boxnum8,GetCastleData("gefg_cas04.gat",2)/5+4; goto TreasureCheck; TreasureCheck: if ($boxnum8 <= 0) break; set $boxid8,rand(4); goto TreasureSpawn; TreasureSpawn: if ($boxid8 > 2) goto TreasureSpawn2; areamonster "gefg_cas04.gat",112,114,119,123,"Treasure Chest",1340,1,"Treasure_B04::TreasureDied"; set $boxnum8,$boxnum8-1; if ($boxnum8 <= 0) break; goto TreasureCheck; TreasureSpawn2: areamonster "gefg_cas04.gat",112,114,119,123,"Treasure Chest",1341,1,"Treasure_B04::TreasureDied"; set $boxnum8,$boxnum8-1; if ($boxnum8 <= 0) break; goto TreasureCheck; TreasureDied: MapAnnounce "gefg_cas04.gat","Treasure Chest Broken Open",17; break; }