diff options
author | Streusel <advance_me@hotmail.de> | 2013-02-18 17:58:19 -0800 |
---|---|---|
committer | Streusel <advance_me@hotmail.de> | 2013-02-18 17:58:19 -0800 |
commit | c6882c741f314f633e681066adb018738e5bb585 (patch) | |
tree | 26baf3376438d329664d1c90e9a3dbc1ba62be90 /npc/guild/agit_controller.txt | |
parent | 1093763fb0807943bf4f26a3dcefc6ad7add0686 (diff) | |
download | hercules-c6882c741f314f633e681066adb018738e5bb585.tar.gz hercules-c6882c741f314f633e681066adb018738e5bb585.tar.bz2 hercules-c6882c741f314f633e681066adb018738e5bb585.tar.xz hercules-c6882c741f314f633e681066adb018738e5bb585.zip |
-Updated map_cache.dat
-Updated Izlude
-Added Fly Wing to Lunatic & Poring
-Added new Quests (Thanks Flaid)
--Expanded MAX_QUEST_DB for the newly added quests
Signed-off-by: Streusel
Diffstat (limited to 'npc/guild/agit_controller.txt')
-rw-r--r-- | npc/guild/agit_controller.txt | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/npc/guild/agit_controller.txt b/npc/guild/agit_controller.txt index 57f1fe4d7..283807a46 100644 --- a/npc/guild/agit_controller.txt +++ b/npc/guild/agit_controller.txt @@ -4,7 +4,7 @@ //= kalen (1.0) //= 1.1 by Akaru and ho|yAnge| //===== Current Version: ===================================== -//= 2.0 +//= 2.0a //===== Description: ========================================= //= Auto Start for War of Emperium //============================================= @@ -29,6 +29,7 @@ //= 1.9 Rearranged the time-checks so they no longer use goto. [L0ne_W0lf] //= Removed treasure spawning function calls. (No longer needed) //= 2.0 Added WoE Battle Log support for broadcasts. [L0ne_W0lf] +//= 2.0a Removed some brackets //============================================================ //| To know how to set up WoE times, go to doc\woe_time_explanation.txt // WoE Start/Stop times @@ -71,12 +72,10 @@ S_DisplayOwners: setarray .@maps$[10],"payg_cas01","payg_cas02","payg_cas03","payg_cas04","payg_cas05"; setarray .@maps$[15],"prtg_cas01","prtg_cas02","prtg_cas03","prtg_cas04","prtg_cas05"; for( set .@i, 0; .@i <= 19; set .@i, .@i+1 ) { - if (GetCastleData(.@maps$[.@i],1)) { + if (GetCastleData(.@maps$[.@i],1)) Announce "The [" + GetCastleName(.@maps$[.@i]) + "] castle has been conquered by the [" + GetGuildName(GetCastleData(.@maps$[.@i],1)) + "] guild.",bc_all|bc_woe; - } - else { + else Announce "The [" + GetCastleName(.@maps$[.@i]) + "] castle is currently unoccupied.",bc_all|bc_woe; - } } end; } |