diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-07-30 23:33:52 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-07-30 23:33:52 +0000 |
commit | 48ba31810d0865984822caccd48f8a47d1e7c62f (patch) | |
tree | 9a7a56edbcfe579396c7da4f3778cdee7a9e01df /npc/guild | |
parent | a8ff79222337101d0512275f353b20d4f1746286 (diff) | |
download | hercules-48ba31810d0865984822caccd48f8a47d1e7c62f.tar.gz hercules-48ba31810d0865984822caccd48f8a47d1e7c62f.tar.bz2 hercules-48ba31810d0865984822caccd48f8a47d1e7c62f.tar.xz hercules-48ba31810d0865984822caccd48f8a47d1e7c62f.zip |
* Fixed the OnAgitBreak message being map-only and not global when a castle is taken. (Lil DomX)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10936 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guild')
-rw-r--r-- | npc/guild/gldfunc_ev_agit.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/guild/gldfunc_ev_agit.txt b/npc/guild/gldfunc_ev_agit.txt index 0eb385cf1..675a497e2 100644 --- a/npc/guild/gldfunc_ev_agit.txt +++ b/npc/guild/gldfunc_ev_agit.txt @@ -4,7 +4,7 @@ //= jAthena - kalen (1.0) //= 1.1 by Akaru, ho|yAnge|X, and Valaris //===== Current Version: ===================================== -//= 1.5 +//= 1.6 //===== Compatible With: ===================================== //= eAthena 0.1+; RO Episode 4+ //===== Description: ========================================= @@ -28,6 +28,7 @@ //= 1.3a fixed Defence / Economy underflow [Lupus] thanks2 kyoki //= 1.4 updated a couple mapannounces in OnAgitBreak. [L0ne_W0lf] //= 1.5 Changed the names of the Kafra from "Service" to "Staff" [L0ne_W0lf] +//= 1.6 Fixed the OnAgitBreak message being map-only and not global. (Lil DomX) [L0ne_W0lf] //============================================================ @@ -141,7 +142,7 @@ function script F_AgitBreak { SetCastleData getarg(0),1, @GID; MapAnnounce getarg(0),"The emperium has been destroyed.",bc_map,0x00CCFF; - Announce "The [" + GetCastleName(getarg(0)) + "] castle has been conquered by the [" + GetGuildName(@GID) + "] guild.",bc_map; + Announce "The [" + GetCastleName(getarg(0)) + "] castle has been conquered by the [" + GetGuildName(@GID) + "] guild.",0; GetCastleData getarg(0),0,"::OnRecvCastle"+getarg(1); disablenpc "Kafra Staff#"+getarg(1); |