summaryrefslogtreecommitdiff
path: root/npc/001-2-38
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2016-06-03 04:00:06 +0200
committerReid <reidyaro@gmail.com>2016-06-03 04:00:06 +0200
commit41ff70a63410c5a5ceab187cb616f6c2447ea759 (patch)
treeb1de9c4a396d257e96d2343ba366dbd82d629be6 /npc/001-2-38
parentb671ab567863e05a95598962a8055df0508971d3 (diff)
downloadserverdata-41ff70a63410c5a5ceab187cb616f6c2447ea759.tar.gz
serverdata-41ff70a63410c5a5ceab187cb616f6c2447ea759.tar.bz2
serverdata-41ff70a63410c5a5ceab187cb616f6c2447ea759.tar.xz
serverdata-41ff70a63410c5a5ceab187cb616f6c2447ea759.zip
Add free save points throughout Artis.
Diffstat (limited to 'npc/001-2-38')
-rw-r--r--npc/001-2-38/_import.txt3
-rw-r--r--npc/001-2-38/savepoints.txt45
2 files changed, 47 insertions, 1 deletions
diff --git a/npc/001-2-38/_import.txt b/npc/001-2-38/_import.txt
index 76c2bf26..9727e6e8 100644
--- a/npc/001-2-38/_import.txt
+++ b/npc/001-2-38/_import.txt
@@ -1,4 +1,5 @@
// Map 001-2-38
-npc: npc/001-2-38/_warps.txt
npc: npc/001-2-38/hammock.txt
npc: npc/001-2-38/mapflags.txt
+npc: npc/001-2-38/savepoints.txt
+npc: npc/001-2-38/_warps.txt
diff --git a/npc/001-2-38/savepoints.txt b/npc/001-2-38/savepoints.txt
new file mode 100644
index 00000000..f3b01caa
--- /dev/null
+++ b/npc/001-2-38/savepoints.txt
@@ -0,0 +1,45 @@
+// Evol scripts.
+// Author:
+// Reid
+// Description:
+// Free save point.
+
+001-2-38,25,41,0 script #savepoint0-001-2-38 NPC_SAVE_POINT,{
+ savepointparticle .map$, .x, .y, CURRENT_INN;
+ close;
+
+OnInit:
+ .distance = 2;
+ .sex = G_OTHER;
+ end;
+}
+
+001-2-38,35,41,0 script #savepoint1-001-2-38 NPC_SAVE_POINT,{
+ savepointparticle .map$, .x, .y, CURRENT_INN;
+ close;
+
+OnInit:
+ .distance = 2;
+ .sex = G_OTHER;
+ end;
+}
+
+001-2-38,25,46,0 script #savepoint2-001-2-38 NPC_SAVE_POINT,{
+ savepointparticle .map$, .x, .y, CURRENT_INN;
+ close;
+
+OnInit:
+ .distance = 2;
+ .sex = G_OTHER;
+ end;
+}
+
+001-2-38,35,46,0 script #savepoint3-001-2-38 NPC_SAVE_POINT,{
+ savepointparticle .map$, .x, .y, CURRENT_INN;
+ close;
+
+OnInit:
+ .distance = 2;
+ .sex = G_OTHER;
+ end;
+}