summaryrefslogtreecommitdiff
path: root/npc/005-5/nylo.txt
diff options
context:
space:
mode:
authorjesusalva <cpntb1@ymail.com>2018-02-13 10:38:40 -0200
committerjesusalva <cpntb1@ymail.com>2018-02-13 10:38:40 -0200
commitcb43bb165034643a9cbba228b9b2b859998df904 (patch)
tree238999329fbf3d93e38ac11eeee3b4d2a3b34522 /npc/005-5/nylo.txt
parent5fa0b41f7bbce4b90cd15e97a03423389cd91b8b (diff)
downloadserverdata-cb43bb165034643a9cbba228b9b2b859998df904.tar.gz
serverdata-cb43bb165034643a9cbba228b9b2b859998df904.tar.bz2
serverdata-cb43bb165034643a9cbba228b9b2b859998df904.tar.xz
serverdata-cb43bb165034643a9cbba228b9b2b859998df904.zip
Fix Nylo and the bankers. Remove Artis' quests from Cynric.
Diffstat (limited to 'npc/005-5/nylo.txt')
-rw-r--r--npc/005-5/nylo.txt19
1 files changed, 11 insertions, 8 deletions
diff --git a/npc/005-5/nylo.txt b/npc/005-5/nylo.txt
index c60c0239a..3c6035251 100644
--- a/npc/005-5/nylo.txt
+++ b/npc/005-5/nylo.txt
@@ -1,5 +1,6 @@
// Author:
// Saulc
+// Jesusalva
005-5,27,38,0 script Nylo NPC_PLAYER,{
@@ -9,14 +10,12 @@
function nylo_thanks {
speech S_LAST_BLANK_LINE,
- l("[Nyle]"),
l("You are very welcome.");
close;
}
function nylo_items2 {
speech S_LAST_BLANK_LINE,
- l("[Nyle]"),
l("Let Cynric open your storage. You might also want to open your inventory."),
l("Pick an item from either storage or inventory and choose what you want to do with it by clicking the right button."),
l("You can also pick and drag items from one window into the other but this will move all items of this kind.");
@@ -39,7 +38,6 @@
function nylo_money2 {
speech S_LAST_BLANK_LINE,
- l("[Nyle]"),
l("That's easy. Cynric will save your money when you ask him to deposit. Or you pick up your money by asking to withdraw."),
l("You only have to tell him how much you want to deposit or withdraw."),
l("Also you can ask how much he already save for you by checking your balance.");
@@ -63,7 +61,6 @@
function nylo_items {
speech S_LAST_BLANK_LINE,
- l("[Nyle]"),
l("Let Cynric open your storage. You might also want to open your inventory."),
l("Pick an item from either storage or inventory and choose what you want to do with it by clicking the right button."),
l("You can also pick and drag items from one window into the other but this will move all items of this kind.");
@@ -90,7 +87,6 @@
function nylo_money {
speech S_LAST_BLANK_LINE,
- l("[Nyle]"),
l("That's easy. Cynric will save your money when you ask him to deposit. Or you pick up your money by asking to withdraw."),
l("You only have to tell him how much you want to deposit or withdraw."),
l("Also you can ask how much he already save for you by checking your balance.");
@@ -118,7 +114,6 @@
function nylo_eplain {
speech S_LAST_BLANK_LINE,
- l("[Nyle]"),
l("There are banks all over the world. Usually every important village or city has one."),
l("You can save both items and money at a bank.");
@@ -145,7 +140,6 @@
}
speech S_LAST_BLANK_LINE,
- l("[Nyle]"),
l("Visiting the bank too right? We're only a small village but Cynric is the best bank guy I know.");
do
@@ -169,8 +163,17 @@
close;
OnInit:
+ .@npcId = getnpcid(0, .name$);
+ //setunitdata(.@npcId, UDT_HEADMIDDLE, 1321);
+ //setunitdata(.@npcId, UDT_HEADBOTTOM, 2217);
+ setunitdata(.@npcId, UDT_HEADMIDDLE, 1300);
+ setunitdata(.@npcId, UDT_HEADBOTTOM, 2200);
+ setunitdata(.@npcId, UDT_WEAPON, 1803);
+ setunitdata(.@npcId, UDT_HAIRSTYLE, 26);
+ setunitdata(.@npcId, UDT_HAIRCOLOR, 0);
+
.sex = G_MALE;
- .distance = 3;
+ .distance = 4;
end;
}