diff options
author | jesusalva <cpntb1@ymail.com> | 2018-03-01 19:06:17 -0300 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-03-01 19:06:17 -0300 |
commit | 2027acd1ebcb08c26f46738470f263aac68c8a0a (patch) | |
tree | 02b3e54155e3178fcd87711dbaad5234456af2ca /npc/002-3 | |
parent | b3f122525af810a61654810f5acfd122dea09939 (diff) | |
download | serverdata-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/002-3')
-rw-r--r-- | npc/002-3/juliet.txt | 19 |
1 files changed, 10 insertions, 9 deletions
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; + } |