summaryrefslogtreecommitdiff
path: root/npc/000-2-1
diff options
context:
space:
mode:
authorAlige <aligetmw@hotmail.fr>2012-12-24 18:00:56 +0400
committerAlige <aligetmw@hotmail.fr>2012-12-24 18:00:56 +0400
commit17975296c914b7bb48f1707a26ad8a6d71870299 (patch)
tree250abf08530d7c1194ae998f5be60f1f0d752411 /npc/000-2-1
parentc37b247eafd2a8816fcea496d80a901ea2bf135f (diff)
downloadserverdata-17975296c914b7bb48f1707a26ad8a6d71870299.tar.gz
serverdata-17975296c914b7bb48f1707a26ad8a6d71870299.tar.bz2
serverdata-17975296c914b7bb48f1707a26ad8a6d71870299.tar.xz
serverdata-17975296c914b7bb48f1707a26ad8a6d71870299.zip
Fixed several things in the script of alige.
Added the missing script for the headache created by the pumpkin seeds. Differenciated the scripts of the blobime and the seeds.
Diffstat (limited to 'npc/000-2-1')
-rw-r--r--npc/000-2-1/alige.txt12
1 files changed, 7 insertions, 5 deletions
diff --git a/npc/000-2-1/alige.txt b/npc/000-2-1/alige.txt
index 99c00411..e544795f 100644
--- a/npc/000-2-1/alige.txt
+++ b/npc/000-2-1/alige.txt
@@ -1,6 +1,7 @@
// Evol scripts.
// Authors:
// Ablu
+// Alige
// Reid
// Vasily_Makarov
// Description:
@@ -164,18 +165,19 @@ l_GiveFood:
rif(countitem(508, 1), l(getitemname("SeaDrops"))), 1,
rif(countitem(509, 1), l(getitemname("Aquada"))), 509,
rif(countitem(510, 1), l(getitemname("PinkBlobime"))), 1,
- rif(countitem(511, 1), l(getitemname("PurpleBlobime"))), 1,
rif(countitem(512, 1), l(getitemname("HalfCroconut"))), 512,
- rif(countitem(513, 1), l(getitemname("Croconut"))), 513,
+ rif(countitem(512, 1), l(getitemname("Croconut"))), 0,
rif(countitem(515, 1), l(getitemname("Plushroom"))), 515,
+ rif(countitem(515, 1), l(getitemname("PumpkinSeeds"))), 1,
l("I don't have anything good for you today."), -1;
set @id, @menuret;
if (@id == -1) goto l_Quit; // Quit message.
if (@id == 0) goto l_NoReward; // In case of wrong food.
- if (@id == 1) goto l_Poison; // In case of Poisonned food.
+ if (@id == 1) goto l_Poison; // In case of poisoned food.
if (@id == 2) goto l_NoMore; // In case of Piberries.
-// Continue if the food is correct.
+// if (@id == item's ID) then food is correct.
+// Do not put any other number than -1, 0, 1, 2 or the item's ID, that'll avoid confusion.
l_GiveReward:
mes "";
@@ -197,7 +199,7 @@ l_NoReward:
setcamnpc;
mes "";
mesn;
- mesq l("I don't want this, give me something else.");
+ mesq l("You don't expect me to eat that, do you? Give me something else!");
restorecam;
goto l_GiveFood;