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/battleground/tierra/tierra01.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/battleground/tierra/tierra01.txt')
-rw-r--r-- | npc/battleground/tierra/tierra01.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/battleground/tierra/tierra01.txt b/npc/battleground/tierra/tierra01.txt index ec35b5cc4..b94d2dd03 100644 --- a/npc/battleground/tierra/tierra01.txt +++ b/npc/battleground/tierra/tierra01.txt @@ -319,7 +319,7 @@ bat_a01,185,270,1 script Guillaume Blacksmith#a01 4_M_REPAIR,{ mes "We can repair the Barricade with ^3131FF50 Stones, 3 Sinew of Bear, 500 Metal Fragments, 30 Rough Elunium and 100 Gold.^000000"; mes "We have it all except for the 50 Stones!"; next; - switch(select("Repair.:Leave it.")) { + switch(select("Repair.", "Leave it.")) { case 1: if (countitem(Stone) > 49) { mes "[Guillaume Blacksmith]"; @@ -403,7 +403,7 @@ bat_a01,170,121,5 script Croix Blacksmith#bat_a01 4_M_REPAIR,{ mes "We can repair the Barricade with ^3131FF50 Stones, 3 Sinew of Bear, 500 Metal Fragments, 30 Rough Elunium and 100 Gold.^000000"; mes "We have it all except for the 50 Stones!"; next; - switch(select("Repair.:Leave it.")) { + switch(select("Repair.", "Leave it.")) { case 1: if (countitem(Stone) > 49) { mes "[Croix Blacksmith]"; @@ -947,7 +947,7 @@ bat_a01,1,1,3 script Release all#a01 4_DOG01,{ } else { mes "May I help you?"; next; - switch(select("Release all.:Cancel.")) { + switch(select("Release all.", "Cancel.")) { case 1: mes "Bye."; close2; |