diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-01-09 21:22:17 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-01-09 21:22:17 -0300 |
commit | 4e312d51e87189350bc8968412bc7ae42f7b3933 (patch) | |
tree | c10408c1a5e0cf2e85bf4adfbed39fa3c6243f12 /npc/011-3 | |
parent | 3d98e39073df31d8b099a2694e0e094fd2e2d249 (diff) | |
download | serverdata-4e312d51e87189350bc8968412bc7ae42f7b3933.tar.gz serverdata-4e312d51e87189350bc8968412bc7ae42f7b3933.tar.bz2 serverdata-4e312d51e87189350bc8968412bc7ae42f7b3933.tar.xz serverdata-4e312d51e87189350bc8968412bc7ae42f7b3933.zip |
Add the placeholder NPCs we'll be needing
Diffstat (limited to 'npc/011-3')
-rw-r--r-- | npc/011-3/_import.txt | 1 | ||||
-rw-r--r-- | npc/011-3/rowboat.txt | 14 |
2 files changed, 15 insertions, 0 deletions
diff --git a/npc/011-3/_import.txt b/npc/011-3/_import.txt index b931fb109..58e72bfe8 100644 --- a/npc/011-3/_import.txt +++ b/npc/011-3/_import.txt @@ -3,3 +3,4 @@ "npc/011-3/_mobs.txt", "npc/011-3/_warps.txt", "npc/011-3/flood.txt", +"npc/011-3/rowboat.txt", diff --git a/npc/011-3/rowboat.txt b/npc/011-3/rowboat.txt new file mode 100644 index 000000000..8cbbfaddb --- /dev/null +++ b/npc/011-3/rowboat.txt @@ -0,0 +1,14 @@ +// A barbarian in 56,87 offers to rent a rowboat. Maximum rent time is one day. +// Allows to use the dock + +011-3,56,87,0 script Barbarian#Sv1 NPC_SAVANNAH_BLUE,{ + mesn; + mesq l("I cannot rent rowboats yet."); + close; + +OnInit: + .sex=G_OTHER; + .distance=5; + end; +} + |