summaryrefslogtreecommitdiff
path: root/npc/001-1/fexil.txt
diff options
context:
space:
mode:
authorAlige <gauvain.dauchy@free.fr>2016-07-06 16:53:43 +0200
committerAlige <gauvain.dauchy@free.fr>2016-07-06 16:53:43 +0200
commit39f195b9934f73a5af9c3066fc04501141edeb9c (patch)
tree31f1c53b462aaaa04f49e98931d8f4cbd4e0ac3e /npc/001-1/fexil.txt
parent435549878eb76e63b1d894d2bf12476b980e511a (diff)
downloadserverdata-39f195b9934f73a5af9c3066fc04501141edeb9c.tar.gz
serverdata-39f195b9934f73a5af9c3066fc04501141edeb9c.tar.bz2
serverdata-39f195b9934f73a5af9c3066fc04501141edeb9c.tar.xz
serverdata-39f195b9934f73a5af9c3066fc04501141edeb9c.zip
Fixed few bugs in NPC scripts:
Changed item IDs to their aegisname Added missing 's' after @@ when needed Few other fixes in english
Diffstat (limited to 'npc/001-1/fexil.txt')
-rw-r--r--npc/001-1/fexil.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/001-1/fexil.txt b/npc/001-1/fexil.txt
index 80b33ef3..6d64a61d 100644
--- a/npc/001-1/fexil.txt
+++ b/npc/001-1/fexil.txt
@@ -17,8 +17,8 @@
speech 4,
l("You know, the life of merchant is hard. I really hope that Artis and the Merchant Guild will help me to succeed."),
l("Maybe you too you could help me?"),
- l("I want to be the first merchant of this square to sell @@'s clothes!", getitemlink(729)),
- l("I will buy all of the fur that you will bring me at a good price, let's say, 15E piece."),
+ l("I want to be the first merchant of this square to sell clothes made from @@s!", getitemlink(FluffyFur)),
+ l("I will buy all of the fur that you will bring me at a good price, let's say, 15 E piece."),
l("Do we have a deal?");
switch (select (l("Ok."), l("I don't want to be part of this joke.")))
@@ -79,7 +79,7 @@
menuint
l("OK, let's trade."), 1,
rif(.@fexil == 2, l("Do you still need help?")), 2,
- rif(.@fexil > 2 && countitem(729) > 0, l("I have some fur for you.")), 3,
+ rif(.@fexil > 2 && countitem(FluffyFur) > 0, l("I have some fur for you.")), 3,
l("No. Sorry."), 4;
switch (@menuret)
@@ -107,10 +107,10 @@
l("Please enter a valid amount.");
continue;
}
- if (.@amount > countitem(729))
+ if (.@amount > countitem(FluffyFur))
{
speech 5,
- l("You don't have enough @@ on you.", getitemlink(729));
+ l("You don't have enough @@s on you.", getitemlink(FluffyFur));
continue;
}
@@ -119,9 +119,9 @@
.@price = 15 * .@amount;
speech 5,
- l("Deal, I offer you @@E!", .@price);
+ l("Deal, I offer you @@ E!", .@price);
- delitem 729, .@amount;
+ delitem FluffyFur, .@amount;
Zeny = Zeny + .@price;
break;