//===== eAthena Script ======================================= //= War of Emperium - gefg_cas01 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_cas01 //===== Additional Comments: ================================= //= 1.1 by Akaru and ho|yAnge|X //============================================================ //================================================ // Exit Treasure Room Switch //================================================ gefg_cas01.gat,151,109,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_cas01.gat",40,49; L2: close; } //================================================ // Treasure Spawning Script //================================================ gefg_cas01.gat,155,112,0 script Treasure_B01 -1,{ OnClock1200: SetCastleData "gefg_cas01.gat",4,0; SetCastleData "gefg_cas01.gat",5,0; KillMonster "gefg_cas01.gat","Treasure_B01::TreasureDied"; set $Economy5,GetCastleData("gefg_cas01.gat",2); if ($Economy5 > 100) break; if (GetCastleData("gefg_cas01.gat",1) == 0) break; set $boxnum5,GetCastleData("gefg_cas01.gat",2)/5+4; goto TreasureCheck; TreasureCheck: if ($boxnum5 <= 0) break; set $boxid5,rand(4); goto TreasureSpawn; TreasureSpawn: if ($boxid5 > 2) goto TreasureSpawn2; areamonster "gefg_cas01.gat",150,108,158,114,"Treasure Chest",1334,1,"Treasure_B01::TreasureDied"; set $boxnum5,$boxnum5-1; if ($boxnum5 <= 0) break; goto TreasureCheck; TreasureSpawn2: areamonster "gefg_cas01.gat",150,108,158,114,"Treasure Chest",1335,1,"Treasure_B01::TreasureDied"; set $boxnum5,$boxnum5-1; if ($boxnum5 <= 0) break; goto TreasureCheck; TreasureDied: MapAnnounce "gefg_cas01.gat","Treasure Chest Broken Open",17; break; }