summaryrefslogtreecommitdiff
path: root/npc/001-1/rowboat.txt
diff options
context:
space:
mode:
authorMicksha <Micksha@users.noreply.github.com>2018-10-25 13:02:54 +0200
committerMicksha <Micksha@users.noreply.github.com>2018-11-05 21:34:37 +0100
commitdd19e5ac28d230b2c4f179c0807e3aea3332255d (patch)
treead47e7e8b75095a022d859263061a72dcbc5eaaa /npc/001-1/rowboat.txt
parent8d22708b530397cddaf81cee0ca1e3d45d5959ea (diff)
downloadserverdata-dd19e5ac28d230b2c4f179c0807e3aea3332255d.tar.gz
serverdata-dd19e5ac28d230b2c4f179c0807e3aea3332255d.tar.bz2
serverdata-dd19e5ac28d230b2c4f179c0807e3aea3332255d.tar.xz
serverdata-dd19e5ac28d230b2c4f179c0807e3aea3332255d.zip
Add the rowboat and Koga NPCs to Artis
Diffstat (limited to 'npc/001-1/rowboat.txt')
-rw-r--r--npc/001-1/rowboat.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/npc/001-1/rowboat.txt b/npc/001-1/rowboat.txt
new file mode 100644
index 00000000..8682ba0e
--- /dev/null
+++ b/npc/001-1/rowboat.txt
@@ -0,0 +1,20 @@
+// Evol scripts.
+// Author:
+// Micksha
+// Description:
+// The rowboat, picking up the player on small beach in order to bring it to Koga.
+// THIS IS A PLACEHOLDER!
+
+001-1,203,64,0 script Rowboat NPC_ROWBOAT_STAND_WE,{
+ speech
+ l("Oh, hi."),
+ l("In case you don't have a commendatory letter from you-know-whom, I am just sitting here and observe the whales.");
+ l("Perhaps, and only perhaps, if you bring me the latter, I can bring you to a ship that will perhaps, and only perhaps, be able to bring you to Woodland.");
+
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 3;
+ end;
+}