summaryrefslogtreecommitdiff
path: root/npc/002-1/alige.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-05-24 11:32:57 -0300
committerJesusaves <cpntb1@ymail.com>2018-05-24 11:32:57 -0300
commit48bb2d5d753b62dabeffce8e3efa00272d90253b (patch)
tree08971dd3e667392526423c7a760e5682780a3782 /npc/002-1/alige.txt
parent1526af36e9f74f781bc6297c4baea601c01a9490 (diff)
downloadserverdata-48bb2d5d753b62dabeffce8e3efa00272d90253b.tar.gz
serverdata-48bb2d5d753b62dabeffce8e3efa00272d90253b.tar.bz2
serverdata-48bb2d5d753b62dabeffce8e3efa00272d90253b.tar.xz
serverdata-48bb2d5d753b62dabeffce8e3efa00272d90253b.zip
Last commit before battery dies.
Diffstat (limited to 'npc/002-1/alige.txt')
-rw-r--r--npc/002-1/alige.txt17
1 files changed, 12 insertions, 5 deletions
diff --git a/npc/002-1/alige.txt b/npc/002-1/alige.txt
index c21cb3f5f..18a9063ac 100644
--- a/npc/002-1/alige.txt
+++ b/npc/002-1/alige.txt
@@ -1,15 +1,22 @@
// TMW2 Scripts.
+//
+// TMW-BR Original Authors:
+// Programmer: Adson Renato
+// Texts: Arkanjo
+// Review: Jesusalva
+//
// Authors:
// Jesusalva
// Description:
-// Stowaway hidden in a ship's hole.
+// Stowaway hidden in a ship's hole. Contrabandist. Trade potions, dyes,
+// food, water, and money for a hat.
002-1,45,26,0 script Alige NPC_ALIGE,{
mesn;
- mesq l("Ssh! I am hiding here. Don't tell anyone I'm hiding here!");
+ mesq lg("Hey, dude! The guards are after me. I need your help, and I can reward you.");
next;
mesn;
- mesq l("I don't want to be thrown to the sharks!");
+ mesq l("But... I need to solve a problem first. So please come back later.");
close;
@@ -21,12 +28,12 @@ OnInit:
OnTouch:
if (getareausers() <= 1)
- setnpcdir "Alige", 2;
+ setnpcdir "Alige", 2; // 6
close;
OnUnTouch:
if (getareausers() == 0)
- setnpcdir "Alige", 4;
+ setnpcdir "Alige", 4; // 8
close;
}