diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-10-25 17:32:05 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-10-25 17:32:05 +0000 |
commit | 6d22823276e8e74e10f5c57378f711774297e06a (patch) | |
tree | 53e2ed09d9bd9ad6830ded8b34c982e4e63366f2 /npc/guild2 | |
parent | c08a03cd066b391197347e73ebe520cad38e156e (diff) | |
download | hercules-6d22823276e8e74e10f5c57378f711774297e06a.tar.gz hercules-6d22823276e8e74e10f5c57378f711774297e06a.tar.bz2 hercules-6d22823276e8e74e10f5c57378f711774297e06a.tar.xz hercules-6d22823276e8e74e10f5c57378f711774297e06a.zip |
Fixed setcell coords for the first barricade in schg_cas03.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13326 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guild2')
-rw-r--r-- | npc/guild2/schg_cas03.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/npc/guild2/schg_cas03.txt b/npc/guild2/schg_cas03.txt index 9fd9a4dac..ad7e4c824 100644 --- a/npc/guild2/schg_cas03.txt +++ b/npc/guild2/schg_cas03.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= L0ne_W0lf //===== Current Version: ===================================== -//= 1.9 +//= 2.0 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -24,6 +24,7 @@ //= 1.7 Fixed a typo when disabling a control device. [L0ne_W0lf] //= 1.8 Changed the treasure box spawn from 1939 to 1940. [L0ne_W0lf] //= 1.9 Replaced effect numerics with constants. [L0ne_W0lf] +//= 2.0 Fixed setcell coords for the first barricade. [L0ne_W0lf] //============================================================ schg_cas03,1,1,0 script Manager#sch03_02 111,{ @@ -1211,12 +1212,12 @@ OnBarrierDestroyed: if (.MyMobCount == 0) { setarray $agit_sc03[2],1; mapannounce "schg_cas03","The 1st Fortress Gate is destroyed.",bc_map,"0x00ff00"; - setcell "schg_cas03",325,227,332,227,cell_walkable,1; + setcell "schg_cas03",325,277,332,277,cell_walkable,1; } end; OnDisable: - setcell "schg_cas03",325,227,332,227,cell_walkable,1; + setcell "schg_cas03",325,277,332,277,cell_walkable,1; killmonster "schg_cas03","#sch03_RL01::OnBarrierDestroyed"; end; } |