summaryrefslogtreecommitdiff
path: root/npc/003-1
diff options
context:
space:
mode:
authorSaulc <lucashelaine14@gmail.com>2019-03-16 12:26:46 +0000
committerSaulc <lucashelaine14@gmail.com>2019-03-16 12:26:46 +0000
commitabbd9c4d83b56f389b3e6b88d4b2fca686bada78 (patch)
tree00eb7a8b5080752b39050b7633bc462de1de06a2 /npc/003-1
parent4fce0663560c98a1cfe63323b2e841df1f369ab1 (diff)
downloadserverdata-abbd9c4d83b56f389b3e6b88d4b2fca686bada78.tar.gz
serverdata-abbd9c4d83b56f389b3e6b88d4b2fca686bada78.tar.bz2
serverdata-abbd9c4d83b56f389b3e6b88d4b2fca686bada78.tar.xz
serverdata-abbd9c4d83b56f389b3e6b88d4b2fca686bada78.zip
Add quest to Inac ! i will need a @jesusalva check <3
Diffstat (limited to 'npc/003-1')
-rw-r--r--npc/003-1/inac.txt98
1 files changed, 96 insertions, 2 deletions
diff --git a/npc/003-1/inac.txt b/npc/003-1/inac.txt
index 689f48efc..6c41848ee 100644
--- a/npc/003-1/inac.txt
+++ b/npc/003-1/inac.txt
@@ -2,8 +2,88 @@
// Author:
// Saulc
// Jesusalva
-
+// Inac Give a sharp knife for 20 Piou Feathers to player over level 12, // before Tycoon give it but only bafter level 18 that was too high !
003-1,55,82,0 script Inac NPC_PLAYER,{
+
+ .@Inac = getq(TulimsharQuest_Inac);
+ if (BaseLevel < 12) goto L_TooWeak;
+ if (.@Inac == 1) goto L_Check;
+ if (.@Inac == 2) goto L_Complete;
+
+L_GiveTask:
+ mesn;
+ mesq lg("Hello, wanderer! Welcome in Tulimshar");
+ next;
+ mesq l("Is Nard who bring you here?");
+ next;
+
+ menu
+ l("Yeah Nard's Sailors saved my life and bring me there!"), L_Quest,
+ l("I need to go."), L_Quit;
+
+L_Quest:
+ mes "";
+ mesn;
+ mesq l("Tulimshar is surrounded by strong monster, if you go out with your poor equipment, you're going to be infamous, boy.");
+ next;
+ mesn;
+ mesq l("I probably can give you a Sharp Knife! If you want to?");
+ next;
+
+ menu
+ l("Really? It would be great!"), L_Start,
+ l("Better do this some other time..."), L_Quit;
+
+
+L_Start:
+ setq TulimsharQuest_Inac, 1;
+ mes "";
+ mesn;
+ mesq l("If you from Candor you probably have some fluffy's yellow feathers, i use them to make pillow:");
+ goto L_List;
+
+L_Quit:
+ mes "";
+ mesn;
+ mesq l("Have a good day then..");
+ close;
+
+L_List:
+ mes "";
+ mesn;
+ mes l("To get my knife bring me this::");
+ mes l("@@/20 @@", countitem(PiouFeathers), getitemlink(PiouFeathers));
+ close;
+
+L_Check:
+ mesn;
+ mesq l("Did you brought me feathers?");
+ next;
+ menu
+ l("Yes! Here you are"), L_Give,
+ l("I forgot what you need!"), L_List,
+ l("Later."), L_Quit;
+
+L_Give:
+ if (
+ countitem(PiouFeathers) < 20
+ ) goto L_Lying;
+
+ inventoryplace SharpKnife, 1;
+
+ delitem(PiouFeathers, 20);
+
+ getitem(SharpKnife, 1);
+ getexp(200, 1);
+ setq(TulimsharQuest_Inac, 2);
+
+ mes "";
+ mesn;
+ mesq l("Enjoy this new weapon, Hope you're going to be successful.");
+ close;
+
+L_Complete:
+
mesn;
mesq l("Many stories are told about this city sewers.");
next;
@@ -23,6 +103,20 @@
setq TulimsharQuest_Sewers, 1;
close;
+L_Lying:
+ mesn;
+ mesq l("No no no, that's wrong.");
+ next;
+ mesc l("I need more feathers for a fair deal.");
+ next;
+
+ goto L_List;
+
+L_TooWeak:
+ mesn;
+ mesq l("Hello little kid, Watch Out there's maggot behind you %%a !");
+ close;
+
OnInit:
.@npcId = getnpcid(.name$);
setunitdata(.@npcId, UDT_HEADTOP, Bandana);
@@ -33,6 +127,6 @@ OnInit:
setunitdata(.@npcId, UDT_HAIRCOLOR, 17);
.sex = G_MALE;
- .distance = 5;
+ .distance = 4;
end;
}