diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-08-20 15:53:35 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-08-20 15:53:35 +0000 |
commit | 82f0534a2177fa7ff583ff0334cb0db0298da9c1 (patch) | |
tree | b9bbdda485f5300265b366b7f82b285ab5d4906e /npc/battleground/flavius | |
parent | 55093c6d497a8b5ef0925ede48bf1122050b99db (diff) | |
download | hercules-82f0534a2177fa7ff583ff0334cb0db0298da9c1.tar.gz hercules-82f0534a2177fa7ff583ff0334cb0db0298da9c1.tar.bz2 hercules-82f0534a2177fa7ff583ff0334cb0db0298da9c1.tar.xz hercules-82f0534a2177fa7ff583ff0334cb0db0298da9c1.zip |
* Fixed wrong events being called for flavius02 BG waiting rooms. (bugreport:4395)
* Fixed the setwalls in Tierra gorge, again. Removed extra mapflags.
* Moved overlapping guild flags outside arug_cas05 to proper points.
* Fixed kRO Name for Women's Bundle. (bugreport:4398)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14385 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/battleground/flavius')
-rw-r--r-- | npc/battleground/flavius/flavius02.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/npc/battleground/flavius/flavius02.txt b/npc/battleground/flavius/flavius02.txt index 4dd47b7af..b1e6a085b 100644 --- a/npc/battleground/flavius/flavius02.txt +++ b/npc/battleground/flavius/flavius02.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= L0ne_W0lf //===== Current Version: ===================================== -//= 1.0 +//= 1.1 //===== Compatible With: ===================================== //= eAthena 1.0 //===== Description: ========================================= @@ -13,6 +13,7 @@ //= - Losing Team: 3 badge //===== Additional Comments: ================================= //= 1.0 First Version. +//= 1.1 Fixed NPCs being called for waiting rooms. (bugreport:4395) //============================================================ // Waiting Room NPCs @@ -76,8 +77,8 @@ OnInit: OnReadyCheck: if( $@FlaviusBG2 ) end; - set .@Guillaume, getwaitingroomstate(0,"Lieutenant Ator"); - set .@Croix, getwaitingroomstate(0,"Lieutenant Thelokus"); + set .@Guillaume, getwaitingroomstate(0,"Lieutenant Huvas"); + set .@Croix, getwaitingroomstate(0,"Lieutenant Yukon"); if( !.@Guillaume && !.@Croix ) { donpcevent "#bat_b02_timer::OnStop"; end; @@ -90,8 +91,8 @@ OnReadyCheck: set $@Guill_ScoreBG2, 0; bg_updatescore "bat_b02",$@Guill_ScoreBG2,$@Croix_ScoreBG2; - donpcevent "Lieutenant Ator::OnEnterBG"; - donpcevent "Lieutenant Thelokus::OnEnterBG"; + donpcevent "Lieutenant Huvas::OnEnterBG"; + donpcevent "Lieutenant Yukon::OnEnterBG"; donpcevent "OBJ#bat_b02_a::Onkill"; donpcevent "OBJ#bat_b02_a::OnEnable"; donpcevent "OBJ#bat_b02_b::Onkill"; |