diff options
author | Haru <haru@dotalux.com> | 2014-10-26 07:16:21 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-11-02 01:36:52 +0100 |
commit | c62b4c3e8e178f8ba1de240b9d67a664ef128ace (patch) | |
tree | de36f22718fe4533ea81e1d02093263005a30224 /npc/quests/bunnyband.txt | |
parent | 54604096ac53398778a5481613061216fe47e5bc (diff) | |
download | hercules-c62b4c3e8e178f8ba1de240b9d67a664ef128ace.tar.gz hercules-c62b4c3e8e178f8ba1de240b9d67a664ef128ace.tar.bz2 hercules-c62b4c3e8e178f8ba1de240b9d67a664ef128ace.tar.xz hercules-c62b4c3e8e178f8ba1de240b9d67a664ef128ace.zip |
Replaced 'set' with direct assignment where applicable (quests folder)
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/quests/bunnyband.txt')
-rw-r--r-- | npc/quests/bunnyband.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/quests/bunnyband.txt b/npc/quests/bunnyband.txt index 8eb89773a..557b434dd 100644 --- a/npc/quests/bunnyband.txt +++ b/npc/quests/bunnyband.txt @@ -32,7 +32,7 @@ alberta,26,229,0 script Kafra Employee#bunny 4_M_01,{ mes "all the items..."; next; setarray .@items[0],949,100,706,1,722,1,2213,1; - for(set .@i,0; .@i<8; set .@i,.@i+2) + for(.@i = 0; .@i<8; .@i += 2) if (countitem(.@items[.@i]) < .@items[.@i+1]) { mes "[Kafra Employee]"; mes "Ooh, I'm sorry"; @@ -49,7 +49,7 @@ alberta,26,229,0 script Kafra Employee#bunny 4_M_01,{ mes "Please wait a moment"; mes "while I put it together..."; next; - for(set .@i,0; .@i<8; set .@i,.@i+2) + for(.@i = 0; .@i<8; .@i += 2) if (countitem(.@items[.@i]) < .@items[.@i+1]) { mes "[Kafra Employee]"; mes "Hm? I'm sorry,"; @@ -69,7 +69,7 @@ alberta,26,229,0 script Kafra Employee#bunny 4_M_01,{ mes "The perfect Bunny Band!"; mes "Well, I hope you enjoy it."; getitem 2214,1; //Bunny_Band - set BUNYBND,0; + BUNYBND = 0; next; mes "[Kafra Employee]"; mes "Thank you for"; @@ -93,7 +93,7 @@ alberta,26,229,0 script Kafra Employee#bunny 4_M_01,{ next; switch(select("Join the Event:Event Information:Cancel")) { case 1: - set BUNYBND,1; + BUNYBND = 1; mes "[Kafra Employee]"; mes "Great! Thanks for"; mes "participating! If you"; |