diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-11 19:32:31 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-11 19:32:31 +0000 |
commit | 4abcaace34018846c00153b98a199edac8fd1970 (patch) | |
tree | 45bc29a76788126d2e48770d6dd387143e707142 /npc/guild2/schg_cas02.txt | |
parent | 33d510fd5052e8df7c530abf313b6bc8391d1d5b (diff) | |
download | hercules-4abcaace34018846c00153b98a199edac8fd1970.tar.gz hercules-4abcaace34018846c00153b98a199edac8fd1970.tar.bz2 hercules-4abcaace34018846c00153b98a199edac8fd1970.tar.xz hercules-4abcaace34018846c00153b98a199edac8fd1970.zip |
Fixed setcell range of first barricade in Juno Castle 2.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12568 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guild2/schg_cas02.txt')
-rw-r--r-- | npc/guild2/schg_cas02.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/npc/guild2/schg_cas02.txt b/npc/guild2/schg_cas02.txt index 98448ea90..d0ce2dcbf 100644 --- a/npc/guild2/schg_cas02.txt +++ b/npc/guild2/schg_cas02.txt @@ -3,13 +3,14 @@ //===== By: ================================================== //= L0ne_W0lf //===== Current Version: ===================================== -//= 1.0 +//= 1.1 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= //= WoE SE Schwaltzvalt Castle 2 //===== Additional Comments: ================================= //= 1.0 First Version [L0ne_W0lf] +//= 1.1 Fixed setcell range of first barricade. [L0ne_W0lf] //============================================================ schg_cas02,1,1,0 script Manager#sch02_02 111,{ @@ -1159,8 +1160,8 @@ OnDisable: schg_cas02,2,1,0 script #sch02_RL00 -1,{ OnEnable: - setcell "schg_cas02",290,98,209,105,cell_walkable,0; - setcell "schg_cas02",290,98,209,105,cell_shootable,0; + setcell "schg_cas02",290,98,290,105,cell_walkable,0; + setcell "schg_cas02",290,98,290,105,cell_shootable,0; guardian "schg_cas02",290,98," ",1905,"#sch02_RL00::OnBarrierDestroyed"; //24; guardian "schg_cas02",290,100," ",1905,"#sch02_RL00::OnBarrierDestroyed"; //25; guardian "schg_cas02",290,102," ",1905,"#sch02_RL00::OnBarrierDestroyed"; //26; @@ -1168,8 +1169,8 @@ OnEnable: end; OnDisable: - setcell "schg_cas02",290,98,209,105,cell_walkable,1; - setcell "schg_cas02",290,98,209,105,cell_shootable,1; + setcell "schg_cas02",290,98,290,105,cell_walkable,1; + setcell "schg_cas02",290,98,290,105,cell_shootable,1; killmonster "schg_cas02","#sch02_RL00::OnBarrierDestroyed"; end; |