ソースを参照

Fixed setcell coords for the first barricade in schg_cas03.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13326 54d463be-8e91-2dee-dedb-b68131a5f0ec
L0ne_W0lf 16 年 前
コミット
2d244e300a
2 ファイル変更5 行追加4 行削除
  1. 1 1
      npc/Changelog.txt
  2. 4 3
      npc/guild2/schg_cas03.txt

+ 1 - 1
npc/Changelog.txt

@@ -1,8 +1,8 @@
 Date		Added
 ======
 2008/10/25
+	* Rev. 13326 Fixed setcell coords for the first barricade in schg_cas03. [L0ne_W0lf].
 	* Rev. 13325 Fixed a copy/paste error in Nordri. (bugreport:2372) [L0ne_W0lf]
-
 2008/10/24
 	* Rev. 13319 Bugfixing yay! Just goin' though the tracker. [L0ne_W0lf]
 	- Fixed variables in a loop in the novice grounds. (bugreport:2374)

+ 4 - 3
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;
 }