summaryrefslogtreecommitdiff
path: root/npc/000-1/chest.txt
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2012-06-30 17:43:34 +0200
committerReid <reidyaro@gmail.com>2012-06-30 17:48:32 +0200
commitb1ef48d172803c6c73ecc366cf9b20d4657cd429 (patch)
tree33197e8cfc09ec2d1529a283e1713880fd1b3bb2 /npc/000-1/chest.txt
parent14fca8a0d14b857a399f5997ceb4f2d9b88a5b9f (diff)
downloadserverdata-b1ef48d172803c6c73ecc366cf9b20d4657cd429.tar.gz
serverdata-b1ef48d172803c6c73ecc366cf9b20d4657cd429.tar.bz2
serverdata-b1ef48d172803c6c73ecc366cf9b20d4657cd429.tar.xz
serverdata-b1ef48d172803c6c73ecc366cf9b20d4657cd429.zip
Correct initnpctimer and startnpctimer on chest.txt .
Diffstat (limited to 'npc/000-1/chest.txt')
-rw-r--r--npc/000-1/chest.txt38
1 files changed, 26 insertions, 12 deletions
diff --git a/npc/000-1/chest.txt b/npc/000-1/chest.txt
index ea886b97c..cf924891a 100644
--- a/npc/000-1/chest.txt
+++ b/npc/000-1/chest.txt
@@ -1,27 +1,41 @@
// Evol scripts.
// Authors:
-// Hal9000 (Francesco Miglietta), Reid
+// Hal9000 (Francesco Miglietta), Reid
// Description:
// An opening treasure chest.
// Variable:
-// ShipQuests_TreasureChest
+// ShipQuests_TreasureChest
// Values:
-// 0: Not opened.
-// 1: Opened.
+// 0: Not opened.
+// 1: Opened.
000-1.gat,58,31,0 script Chest 316;2,{
- set @q, geta(ShipQuests, ShipQuests_TreasureChest);
- if (@q == 1) close;
-
+ set @q, geta2(ShipQuests, ShipQuests_TreasureChest);
+ if (getnpcdir ("") == 4) goto l_Give;
-L_FirstEncounter:
- seta ShipQuests, ShipQuests_TreasureChest, 1;
+ setnpcdir 2;
+ initnpctimer;
+ startnpctimer;
+ close;
- mesn;
- mesq l("Hey it works!");
+l_Give:
+ if (@q > 1) goto l_Close;
+ seta2 ShipQuests, ShipQuests_TreasureChest, 1;
+ getitem "WornShirt", 1;
+ getitem "WornShorts", 1;
close;
+l_Close:
+ setnpcdir 6;
+ initnpctimer;
+ startnpctimer;
+ close;
+OnTimer220:
+ stopnpctimer;
+ if (getnpcdir ("") == 2) setnpcdir 4;
+ if (getnpcdir ("") == 6) setnpcdir 0;
+ end;
-}
+} \ No newline at end of file