summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorjesusalva <cpntb1@ymail.com>2018-03-01 19:06:17 -0300
committerjesusalva <cpntb1@ymail.com>2018-03-01 19:06:17 -0300
commit2027acd1ebcb08c26f46738470f263aac68c8a0a (patch)
tree02b3e54155e3178fcd87711dbaad5234456af2ca /npc
parentb3f122525af810a61654810f5acfd122dea09939 (diff)
downloadserverdata-2027acd1ebcb08c26f46738470f263aac68c8a0a.tar.gz
serverdata-2027acd1ebcb08c26f46738470f263aac68c8a0a.tar.bz2
serverdata-2027acd1ebcb08c26f46738470f263aac68c8a0a.tar.xz
serverdata-2027acd1ebcb08c26f46738470f263aac68c8a0a.zip
I couldn't get past Ratto Mission, so "hack my way" though it -_- Drop rate therefore reduced
Diffstat (limited to 'npc')
-rw-r--r--npc/002-1/alige.txt6
-rw-r--r--npc/002-3/juliet.txt19
2 files changed, 14 insertions, 11 deletions
diff --git a/npc/002-1/alige.txt b/npc/002-1/alige.txt
index 4830ad0b2..2f7aa2963 100644
--- a/npc/002-1/alige.txt
+++ b/npc/002-1/alige.txt
@@ -1,3 +1,4 @@
+// TMW2 Scripts.
// Evol scripts.
// Authors:
// Ablu
@@ -5,8 +6,9 @@
// Qwerty Dragon
// Reid
// Vasily_Makarov
+// Jesusalva
// Description:
-// Hidden in a ship's hole.
+// Stowaway hidden in a ship's hole.
// 2 bits array:
// ShipQuests
// Variable:
@@ -144,7 +146,7 @@ L_Artis:
setcamnpc;
mes "";
mesn;
- mesq l("It's a commercial port of Andorra, it's weird that you don't know about it since it is one of the most famous cities throughout the whole world. But hey, back to me. Remember me telling you that I'm hun...grrr...eee!");
+ mesq l("It's a commercial port town, far far away from Tulimshar and the Great Continent. But hey, back to me. Remember me telling you that I'm hun...grrr...eee!");
next;
restorecam;
diff --git a/npc/002-3/juliet.txt b/npc/002-3/juliet.txt
index 1c20c3341..915c66faa 100644
--- a/npc/002-3/juliet.txt
+++ b/npc/002-3/juliet.txt
@@ -24,12 +24,9 @@
closedialog;
}
- function gotoSleep {
- speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
- l("You already did enough for us, follow Nard's advice and get some rest."),
- l("We are at half a day from our final destination, by the time that you wake up I'm sure that we will be there!"),
- l("Do you have any other questions for me?");
- ynMenu;
+ function sellFood {
+ openshop;
+ close;
return;
}
@@ -147,7 +144,7 @@
.@q4 = getq(General_Narrator);
selectd
- rif(.@q3 == 5 && .@q4 < 1, l("What can I do now?")),
+ l("I am hungry. Can I buy some food here?"),
rif(getskilllv(NV_BASIC) < 6, l("Something is wrong with me, I can't smile nor sit.")),
lg("I made a mistake, I would like to change my language."),
l("Could you explain to me where I am?"),
@@ -157,7 +154,7 @@
switch (@menu)
{
- case 1: gotoSleep; break;
+ case 1: sellFood; break;
case 2: basicSkill; break;
case 3: chooseLang .@s$; break;
case 4: whereAmI; break;
@@ -222,5 +219,9 @@ OnTouch:
OnInit:
.sex = G_FEMALE;
.distance = 10;
- .quest_debug = ShipQuests_Julia;
+ sellitem Cheese;
+ sellitem Fungus;
+ sellitem Aquada;
+ sellitem Piberries;
+
}