diff options
author | Michieru <michieru@0-mail.com> | 2013-10-24 12:10:43 +0200 |
---|---|---|
committer | Michieru <michieru@0-mail.com> | 2013-10-24 12:10:43 +0200 |
commit | e3afdc2af4c5e50c79237ee092e25f39b7428e47 (patch) | |
tree | 20cfd05dd6fc2e3e53173ef059f045cee1526d58 /npc/events/halloween_2006.txt | |
parent | 491892212d338903179909b89a5bfc2385e52261 (diff) | |
download | hercules-e3afdc2af4c5e50c79237ee092e25f39b7428e47.tar.gz hercules-e3afdc2af4c5e50c79237ee092e25f39b7428e47.tar.bz2 hercules-e3afdc2af4c5e50c79237ee092e25f39b7428e47.tar.xz hercules-e3afdc2af4c5e50c79237ee092e25f39b7428e47.zip |
Update to last rAthena npc.
Fix some typos
change sc_bleeding to -> sc_blooding
Updated RE EXP for quests_brasilis.txt
Diffstat (limited to 'npc/events/halloween_2006.txt')
-rw-r--r-- | npc/events/halloween_2006.txt | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/npc/events/halloween_2006.txt b/npc/events/halloween_2006.txt index b8664de2e..0ffaf959a 100644 --- a/npc/events/halloween_2006.txt +++ b/npc/events/halloween_2006.txt @@ -5,7 +5,7 @@ //===== Current Version: ===================================== //= 1.4 //===== Description: ========================================= -//= [Aegis Conversion] +//= [Official Conversion] //= Event 1: Redeem "Pumpkin Mojo" for pumpkin headgear. //= Event 2: Create "Pumpkin Pie" item. //===== Additional Comments: ================================= @@ -40,8 +40,7 @@ OnEffect2: } prontera,164,69,3 script Cool Devi#06_hw 738,{ - set .@now_weight,MaxWeight-Weight; - if (.@now_weight < 2000 || checkweight(1201,1) == 0) { + if (MaxWeight - Weight < 2000 || checkweight(1201,1) == 0) { mes "^3355FFWait a second!"; mes "Right now, you're carrying"; mes "too many things with you."; @@ -237,8 +236,7 @@ prontera,164,69,3 script Cool Devi#06_hw 738,{ geffen,145,132,3 script Hoirin#06_hw 729,{ - set .@now_weight,MaxWeight-Weight; - if (.@now_weight < 2000 || checkweight(1201,1) == 0) { + if (MaxWeight - Weight < 2000 || checkweight(1201,1) == 0) { mes "^3355FFWait a second!"; mes "Right now, you're carrying"; mes "too many things with you."; @@ -393,8 +391,7 @@ OnTouch: } nif_in,19,32,3 script Deviruchi#06_hw 738,{ - set .@now_weight,MaxWeight-Weight; - if (.@now_weight < 2000 || checkweight(1201,1) == 0) { + if (MaxWeight - Weight < 2000 || checkweight(1201,1) == 0) { mes "^3355FFWait a second!"; mes "Right now, you're carrying"; mes "too many things with you."; @@ -486,8 +483,7 @@ nif_in,19,32,3 script Deviruchi#06_hw 738,{ // Creation of Pumpkin Pie (Event 2) //============================================================ nif_fild01,165,115,3 script Chicken Masta#06_hw 794,{ - set .@now_weight,MaxWeight-Weight; - if (.@now_weight < 2000 || checkweight(1201,1) == 0) { + if (MaxWeight - Weight < 2000 || checkweight(1201,1) == 0) { mes "^3355FFWait a second!"; mes "Right now, you're carrying"; mes "too many things with you."; |