diff options
author | shennetsind <ind@henn.et> | 2014-11-03 08:15:05 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2014-11-03 08:15:05 -0200 |
commit | bee4c9d36f4a27e39cc76dc5d6c5f876ed44a678 (patch) | |
tree | 79f9aec5171e8aed2d701bf67167f260e05f41db /npc/quests/bunnyband.txt | |
parent | 239d480487e24294975f35ed55f210837ad1088e (diff) | |
parent | ce3f4bfbe016ea69c855146667ba9bd9e0e2e221 (diff) | |
download | hercules-bee4c9d36f4a27e39cc76dc5d6c5f876ed44a678.tar.gz hercules-bee4c9d36f4a27e39cc76dc5d6c5f876ed44a678.tar.bz2 hercules-bee4c9d36f4a27e39cc76dc5d6c5f876ed44a678.tar.xz hercules-bee4c9d36f4a27e39cc76dc5d6c5f876ed44a678.zip |
Merge branch 'master' of github.com:HerculesWS/Hercules
Signed-off-by: shennetsind <ind@henn.et>
Conflicts:
src/map/battle.c
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"; |