diff options
author | Haru <haru@dotalux.com> | 2016-02-07 01:23:46 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-02-07 01:23:46 +0100 |
commit | 1fd628e7be9e6de4ea48394be09ae10e912d8f3d (patch) | |
tree | 4e5b42a444f83976c33f22540d3aa46a8ceb7001 /npc/re/merchants/refine.txt | |
parent | e68aa1f74d315f7bf24d7c8829002d0031b23539 (diff) | |
parent | 0462bc828e59ce99a48303a2f6190d3a01ce9465 (diff) | |
download | hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.gz hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.bz2 hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.xz hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.zip |
Merge pull request #1110 from dastgir/22-ScriptClean-Phase2
Script CleanUp Phase 2
Diffstat (limited to 'npc/re/merchants/refine.txt')
-rw-r--r-- | npc/re/merchants/refine.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/re/merchants/refine.txt b/npc/re/merchants/refine.txt index 6014d2a85..6356acfca 100644 --- a/npc/re/merchants/refine.txt +++ b/npc/re/merchants/refine.txt @@ -137,7 +137,7 @@ function script refinenew { } mes "Are you sure you want to continue?"; next; - if(select("Yes:No") == 2){ + if(select("Yes", "No") == 2){ mes "["+ getarg(0) +"]"; mes "Hm... if you mind... never mind..."; close; @@ -157,7 +157,7 @@ function script refinenew { mes "Do you still want me to refine it?"; mes "I think I have given you enough warning."; next; - if(select("Yes.:No.") == 2) { + if(select("Yes.", "No.") == 2) { mes "["+ getarg(0) +"]"; mes "Well, no challenge is one way to go..."; mes "No risk... that could be wise."; @@ -275,7 +275,7 @@ function script refinenew { mes "[" + getarg(0) + "]"; mes "That will cost you " + .@refinecnt + " " + getitemname(.@material) + " and " + .@fullprice + " Zeny. Is that ok?"; next; - if(select("Yes:No...") == 2){ + if(select("Yes", "No...") == 2){ mes "[" + getarg(0) + "]"; mes "You said so... So be it."; close; @@ -364,7 +364,7 @@ function script refinenew { mes "Bradium or Carnium."; mes "Just give me 50,000z."; next; - switch(select("Oridecon to Bradium.:Elunium to Carnium.:Purified Bradium to Carnium.:No thanks.")) { + switch(select("Oridecon to Bradium.", "Elunium to Carnium.", "Purified Bradium to Carnium.", "No thanks.")) { case 1: setarray .@i[0],984,3,6224; //Oridecon -> Bradium break; @@ -497,7 +497,7 @@ malangdo,224,172,6 script Clink#mal_normal 4_CAT_SAILOR1,{ } mes "You need ^ff9999"+getitemname(.@material)+"^000000 and ^ff9999"+.@price+"^000000 Zeny. Do you have them?"; next; - if(select("Yes, I do!!:Forget about it!!") == 2) { + if(select("Yes, I do!!", "Forget about it!!") == 2) { mes "[Clink]"; mes "I knew it!!"; mes "I knew you were not worth trying my magical refining hammer for."; @@ -515,7 +515,7 @@ malangdo,224,172,6 script Clink#mal_normal 4_CAT_SAILOR1,{ mes "the ^ff0000whole thing will disappear^000000."; mes "You still up for this~?"; next; - if(select("Yes, I am!!:Forget about it!!") == 2) { + if(select("Yes, I am!!", "Forget about it!!") == 2) { mes "[Clink]"; mes "I knew it!!"; mes "You can't even take this big step. Don't think about refining..."; |