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/merchants/hd_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/merchants/hd_refine.txt')
-rw-r--r-- | npc/merchants/hd_refine.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/merchants/hd_refine.txt b/npc/merchants/hd_refine.txt index e1a9bae7e..a7fc5e922 100644 --- a/npc/merchants/hd_refine.txt +++ b/npc/merchants/hd_refine.txt @@ -120,7 +120,7 @@ mes "In order to refine the gear you selected you need ^ff9999"+getitemname(.@material)+"^000000 and 20,000 zeny as a fee."; mes "Do you have them ready?"; next; - if(select("Yes:No") == 2) { + if(select("Yes", "No") == 2) { mes "[Blacksmith Mighty Hammer]"; mes "I will wait until you are ready."; close; @@ -131,7 +131,7 @@ mes "Well, even if it fails, it only decreases by 1 refine level."; mes "Would you like to continue refining?"; next; - if(select("Yes:No") == 2) { + if(select("Yes", "No") == 2) { mes "[Blacksmith Mighty Hammer]"; mes "Only those who overcome fear of failure will obtain a masterpiece."; close; @@ -266,7 +266,7 @@ lhz_in02,280,19,3 duplicate(MightyHammer) Mighty Hammer#lhz 4_M_DWARF mes "To refine this equipment, I need 1 ^ff9999"+getitemname(.@material)+"^000000 and 100,000 zeny as a fee."; mes "Do you really want to refine this?"; next; - if(select("Yes:No") == 2) { + if(select("Yes", "No") == 2) { mes "[Basta]"; mes "Okay. If that's what you want..."; close; @@ -285,7 +285,7 @@ lhz_in02,280,19,3 duplicate(MightyHammer) Mighty Hammer#lhz 4_M_DWARF mes "Compared to other blacksmiths, the risk is smaller."; mes "I've given all precautions. Do you want to try it?"; next; - if(select("Yes:No") == 2) { + if(select("Yes", "No") == 2) { mes "[Basta]"; mes "Well~"; mes "Not challenging at all could also be a kind of wisdom in life."; |