summaryrefslogtreecommitdiff
path: root/npc/re/quests/eden/56-70.txt
diff options
context:
space:
mode:
authorDastgir <dastgirpojee@rocketmail.com>2016-01-17 17:59:05 +0530
committerDastgir <dastgirpojee@rocketmail.com>2016-01-17 18:23:15 +0530
commit0462bc828e59ce99a48303a2f6190d3a01ce9465 (patch)
tree58a74fe4351a6b1c95756bed7473d0fcecf0c9ed /npc/re/quests/eden/56-70.txt
parent563d0c59e2afa7d63f8fab5faeb79c80d63a34a9 (diff)
downloadhercules-0462bc828e59ce99a48303a2f6190d3a01ce9465.tar.gz
hercules-0462bc828e59ce99a48303a2f6190d3a01ce9465.tar.bz2
hercules-0462bc828e59ce99a48303a2f6190d3a01ce9465.tar.xz
hercules-0462bc828e59ce99a48303a2f6190d3a01ce9465.zip
Script Standardization: changed select format in RE folder
Diffstat (limited to 'npc/re/quests/eden/56-70.txt')
-rw-r--r--npc/re/quests/eden/56-70.txt20
1 files changed, 10 insertions, 10 deletions
diff --git a/npc/re/quests/eden/56-70.txt b/npc/re/quests/eden/56-70.txt
index 01f28c8c1..741e6af89 100644
--- a/npc/re/quests/eden/56-70.txt
+++ b/npc/re/quests/eden/56-70.txt
@@ -44,16 +44,16 @@ moc_para01,42,38,3 script Mission [56 - 70] 4_BOARD3,{
next;
mes "Lots of missions such as a Monster Hunting, Delivery Goods, Finding People.";
next;
- switch(select("Mission Numbers 1~5:Mission Numbers 6~10:Mission Numbers 11~15")) {
+ switch(select("Mission Numbers 1~5", "Mission Numbers 6~10", "Mission Numbers 11~15")) {
case 1:
- switch(select("What is this Bandage?:Dangerous Alligators.:That wasn't a mermaid...:My country is calling me!")) {
+ switch(select("What is this Bandage?", "Dangerous Alligators.", "That wasn't a mermaid...", "My country is calling me!")) {
case 1: callsub L_HuntingQuest,3250,15000,5000,930,30;
case 2: callsub L_HuntingQuest,3251,16000,6000;
case 3: callsub L_HuntingQuest,3252,17000,8000;
case 4: callsub L_Quest,3254,18000,8000,7043,10,1056,30;
}
case 2:
- switch(select("Hunt Wild Boar:Preparing the Summer:A Woman's Grudge:Special ingredients:Puppet Master's Agony")) {
+ switch(select("Hunt Wild Boar", "Preparing the Summer", "A Woman's Grudge", "Special ingredients", "Puppet Master's Agony")) {
case 1: callsub L_HuntingQuest,3255,16000,7000;
case 2: callsub L_Quest,3256,15000,5000,918,30;
case 3: callsub L_HuntingQuest,3257,17000,8000;
@@ -61,7 +61,7 @@ moc_para01,42,38,3 script Mission [56 - 70] 4_BOARD3,{
case 5: callsub L_HuntingQuest,3259,17000,7000,1060,30;
}
case 3:
- switch(select("Tiresome Flies:Dangerous Munak:Make the World green:Magic Wand")) {
+ switch(select("Tiresome Flies", "Dangerous Munak", "Make the World green", "Magic Wand")) {
case 1: callsub L_HuntingQuest,3260,16000,6000;
case 2: callsub L_HuntingQuest,3261,16000,7000;
case 3: callsub L_Quest,3262,17000,7000,1032,40;
@@ -76,7 +76,7 @@ L_Quest:
next;
mes "Would you like to accept this mission?";
next;
- if(select("Accept the mission.:Do not accept the mission.") == 1) {
+ if(select("Accept the mission.", "Do not accept the mission.") == 1) {
if (BaseLevel < 55 || BaseLevel > 70) {
mes "These missions are not fit for my level. I should look for other missions.";
close;
@@ -97,13 +97,13 @@ L_Quest:
if (questprogress(getarg(0)) != 2 && (countitem(getarg(3)) < getarg(4) || .@items == 1)) {
mes "You have an on-going mission. Would you like to check the details?";
next;
- if(select("Check the details.:Cancel.") == 1)
+ if(select("Check the details.", "Cancel.") == 1)
callsub L_Details, getarg(0);
close;
} else {
mes "I have done pretty well for the mission. Should I report it now?";
next;
- if(select("Report the mission.:Do not report it yet.") == 1) {
+ if(select("Report the mission.", "Do not report it yet.") == 1) {
delitem getarg(3),getarg(4);
if (.@items)
delitem getarg(5),getarg(6);
@@ -121,7 +121,7 @@ L_HuntingQuest:
next;
mes "Would you like to accept this mission?";
next;
- if(select("Accept the mission.:Do not accept the mission.") == 1) {
+ if(select("Accept the mission.", "Do not accept the mission.") == 1) {
if (BaseLevel < 55 || BaseLevel > 70) {
mes "These missions are not fit for my level. I should look for other missions.";
close;
@@ -142,13 +142,13 @@ L_HuntingQuest:
if (questprogress(getarg(0),HUNTING) != 2 || .@items == 1) {
mes "You have an on-going mission. Would you like to check the details?";
next;
- if(select("Check the details.:Cancel.") == 1)
+ if(select("Check the details.", "Cancel.") == 1)
callsub L_Details, getarg(0);
close;
} else if (questprogress(getarg(0),HUNTING) == 2) {
mes "I have done pretty well for the mission. Should I report it now?";
next;
- if(select("Report the mission.:Do not report it yet.") == 1) {
+ if(select("Report the mission.", "Do not report it yet.") == 1) {
if (.@items)
delitem getarg(3),getarg(4);
getexp getarg(1),getarg(2);