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/diamond.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/diamond.txt')
-rw-r--r-- | npc/re/merchants/diamond.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/re/merchants/diamond.txt b/npc/re/merchants/diamond.txt index 95f8d7774..9d1108875 100644 --- a/npc/re/merchants/diamond.txt +++ b/npc/re/merchants/diamond.txt @@ -81,7 +81,7 @@ mes "Some claim that this is the very same diamond"; mes "that was seen by Kachua in Comodo!"; next; - if (select("End Conversation:How much is it?") == 1) { + if (select("End Conversation", "How much is it?") == 1) { mes .@npc$; mes "It's rather inexpensive!"; mes "If you're interested, talk to me any time!"; @@ -99,7 +99,7 @@ mes "Compared to the quality of the diamond"; mes "this is a small price to pay."; next; - if (select("^828282It's too expensive.^000000:I'll buy it.") == 1) { + if (select("^828282It's too expensive.^000000", "I'll buy it.") == 1) { mes .@npc$; mes "To say that a diamond such as the"; mes "^FF82FF'17 Carat Diamond'^000000 is too expensive, "; @@ -114,7 +114,7 @@ mes "All I need from you is to complete this contract."; next; while(1) { - if (select("^B9062FI will sign the contract.^000000:^828282Nevermind, I changed my mind.^000000") == 2) { + if (select("^B9062FI will sign the contract.^000000", "^828282Nevermind, I changed my mind.^000000") == 2) { mes .@npc$; mes "I see, that's too bad.."; close; @@ -175,7 +175,7 @@ mes "AAH. You would like to exchange your ^FF82FF'17 Carat Diamond'^000000 for zeny?"; emotion e_gasp; next; - if (select("Yes:No") == 2) { + if (select("Yes", "No") == 2) { mes .@npc$; mes "Then, what is it you desire?.."; mes ". . . . . ...."; @@ -197,7 +197,7 @@ mes "Alright then, please sign here."; next; while (1) { - if (select("Sign:Don't Sign") == 2) { + if (select("Sign", "Don't Sign") == 2) { mes .@npc$; mes "The trade cannot be completed without your signature."; close; |