diff options
author | gepard1984 <gepard1984@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-02-02 21:16:23 +0000 |
---|---|---|
committer | gepard1984 <gepard1984@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-02-02 21:16:23 +0000 |
commit | 87cd1ffa303774588be237e68f82b43532452ec2 (patch) | |
tree | 56d522215fe6b1938e2d126f4604bf5a529bb158 /npc/guild | |
parent | 64b28235a651f9cb046dfb10c50d3d8439726358 (diff) | |
download | hercules-87cd1ffa303774588be237e68f82b43532452ec2.tar.gz hercules-87cd1ffa303774588be237e68f82b43532452ec2.tar.bz2 hercules-87cd1ffa303774588be237e68f82b43532452ec2.tar.xz hercules-87cd1ffa303774588be237e68f82b43532452ec2.zip |
Removed `gvg_eliminate_time` battle config, as it was only used by scripts. Replaced its occurences in War of Emperium script with default value (7000ms) (bugreport:137).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15538 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guild')
-rw-r--r-- | npc/guild/agit_template.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/guild/agit_template.txt b/npc/guild/agit_template.txt index 34d5e7dae..52d1d94c3 100644 --- a/npc/guild/agit_template.txt +++ b/npc/guild/agit_template.txt @@ -143,7 +143,7 @@ OnAgitBreak: sleep 500; // Slow down script execution slightly. if( agitcheck() ) donpcevent "Agit#"+strnpcinfo(2)+"::OnStartArena"; - sleep getbattleflag("gvg_eliminate_time"); + sleep 7000; announce "The [" + getcastlename(strnpcinfo(2)) + "] castle has been conquered by the [" + getguildName(.@GID) + "] guild.",bc_all|bc_woe; end; @@ -165,7 +165,7 @@ OnGuildBreak: disablenpc "Kafra Staff#"+strnpcinfo(2); SetCastleData strnpcinfo(2),0,0; // Wait before refreshing guild information. - sleep getbattleflag("gvg_eliminate_time"); + sleep 7000; Announce "Guild Base [" + GetCastleName(strnpcinfo(2)) + "] has been abandoned.",0; GetCastleData strnpcinfo(2),0,strnpcinfo(0)+"::OnRecvCastle"; end; |