From 41ff70a63410c5a5ceab187cb616f6c2447ea759 Mon Sep 17 00:00:00 2001 From: Reid Date: Fri, 3 Jun 2016 04:00:06 +0200 Subject: Add free save points throughout Artis. --- npc/001-2-10/_import.txt | 1 + npc/001-2-10/savepoints.txt | 15 +++++++++++++ npc/001-2-11/_import.txt | 1 + npc/001-2-11/savepoints.txt | 15 +++++++++++++ npc/001-2-13/_import.txt | 1 + npc/001-2-13/savepoints.txt | 15 +++++++++++++ npc/001-2-15/_import.txt | 1 + npc/001-2-15/savepoints.txt | 15 +++++++++++++ npc/001-2-22/_import.txt | 6 ++--- npc/001-2-22/savepoint.txt | 27 +++++++++++++--------- npc/001-2-22/savepoints.txt | 55 +++++++++++++++++++++++++++++++++++++++++++++ npc/001-2-3/_import.txt | 1 + npc/001-2-3/savepoints.txt | 15 +++++++++++++ npc/001-2-37/_import.txt | 3 ++- npc/001-2-37/savepoints.txt | 45 +++++++++++++++++++++++++++++++++++++ npc/001-2-38/_import.txt | 3 ++- npc/001-2-38/savepoints.txt | 45 +++++++++++++++++++++++++++++++++++++ 17 files changed, 248 insertions(+), 16 deletions(-) create mode 100644 npc/001-2-10/savepoints.txt create mode 100644 npc/001-2-11/savepoints.txt create mode 100644 npc/001-2-13/savepoints.txt create mode 100644 npc/001-2-15/savepoints.txt create mode 100644 npc/001-2-22/savepoints.txt create mode 100644 npc/001-2-3/savepoints.txt create mode 100644 npc/001-2-37/savepoints.txt create mode 100644 npc/001-2-38/savepoints.txt diff --git a/npc/001-2-10/_import.txt b/npc/001-2-10/_import.txt index aaa5bd6b..bb53187e 100644 --- a/npc/001-2-10/_import.txt +++ b/npc/001-2-10/_import.txt @@ -1,2 +1,3 @@ npc: npc/001-2-10/mapflags.txt +npc: npc/001-2-10/savepoints.txt npc: npc/001-2-10/_warps.txt diff --git a/npc/001-2-10/savepoints.txt b/npc/001-2-10/savepoints.txt new file mode 100644 index 00000000..7e4d9386 --- /dev/null +++ b/npc/001-2-10/savepoints.txt @@ -0,0 +1,15 @@ +// Evol scripts. +// Author: +// Reid +// Description: +// Free save point. + +001-2-10,26,30,0 script #savepoint0-001-2-10 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; + close; + +OnInit: + .distance = 2; + .sex = G_OTHER; + end; +} diff --git a/npc/001-2-11/_import.txt b/npc/001-2-11/_import.txt index 881b2949..454160a3 100644 --- a/npc/001-2-11/_import.txt +++ b/npc/001-2-11/_import.txt @@ -1,3 +1,4 @@ npc: npc/001-2-11/mapflags.txt npc: npc/001-2-11/mona.txt +npc: npc/001-2-11/savepoints.txt npc: npc/001-2-11/_warps.txt diff --git a/npc/001-2-11/savepoints.txt b/npc/001-2-11/savepoints.txt new file mode 100644 index 00000000..4f360d63 --- /dev/null +++ b/npc/001-2-11/savepoints.txt @@ -0,0 +1,15 @@ +// Evol scripts. +// Author: +// Reid +// Description: +// Free save point. + +001-2-11,26,31,0 script #savepoint0-001-2-11 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; + close; + +OnInit: + .distance = 2; + .sex = G_OTHER; + end; +} diff --git a/npc/001-2-13/_import.txt b/npc/001-2-13/_import.txt index 18996b2e..a3fe92c3 100644 --- a/npc/001-2-13/_import.txt +++ b/npc/001-2-13/_import.txt @@ -1,2 +1,3 @@ npc: npc/001-2-13/mapflags.txt +npc: npc/001-2-13/savepoints.txt npc: npc/001-2-13/_warps.txt diff --git a/npc/001-2-13/savepoints.txt b/npc/001-2-13/savepoints.txt new file mode 100644 index 00000000..e46700eb --- /dev/null +++ b/npc/001-2-13/savepoints.txt @@ -0,0 +1,15 @@ +// Evol scripts. +// Author: +// Reid +// Description: +// Free save point. + +001-2-13,41,31,0 script #savepoint0-001-2-13 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; + close; + +OnInit: + .distance = 2; + .sex = G_OTHER; + end; +} diff --git a/npc/001-2-15/_import.txt b/npc/001-2-15/_import.txt index 6903349c..98e533c4 100644 --- a/npc/001-2-15/_import.txt +++ b/npc/001-2-15/_import.txt @@ -1,2 +1,3 @@ npc: npc/001-2-15/mapflags.txt +npc: npc/001-2-15/savepoints.txt npc: npc/001-2-15/_warps.txt diff --git a/npc/001-2-15/savepoints.txt b/npc/001-2-15/savepoints.txt new file mode 100644 index 00000000..157af4d6 --- /dev/null +++ b/npc/001-2-15/savepoints.txt @@ -0,0 +1,15 @@ +// Evol scripts. +// Author: +// Reid +// Description: +// Free save point. + +001-2-15,27,41,0 script #savepoint0-001-2-15 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; + close; + +OnInit: + .distance = 2; + .sex = G_OTHER; + end; +} diff --git a/npc/001-2-22/_import.txt b/npc/001-2-22/_import.txt index e1ac2437..3063ecaf 100644 --- a/npc/001-2-22/_import.txt +++ b/npc/001-2-22/_import.txt @@ -1,11 +1,11 @@ // Map 001-2-22: La Johanne, Second Deck npc: npc/001-2-22/mapflags.txt -npc: npc/001-2-22/_mobs.txt -npc: npc/001-2-22/_warps.txt npc: npc/001-2-22/alige.txt npc: npc/001-2-22/chefgado.txt npc: npc/001-2-22/chest.txt npc: npc/001-2-22/hammock.txt npc: npc/001-2-22/knife.txt +npc: npc/001-2-22/_mobs.txt npc: npc/001-2-22/peter.txt -npc: npc/001-2-22/savepoint.txt +npc: npc/001-2-22/savepoints.txt +npc: npc/001-2-22/_warps.txt diff --git a/npc/001-2-22/savepoint.txt b/npc/001-2-22/savepoint.txt index c1857f46..b2f139e2 100644 --- a/npc/001-2-22/savepoint.txt +++ b/npc/001-2-22/savepoint.txt @@ -2,49 +2,54 @@ // Author: // Reid // Description: -// Saves locations in 001-2-22 map. +// Free save point. -001-2-22,40,37,0 script #001-2-22-1 NPC_SAVE_POINT,{ - savepointparticle "001-2-22.gat", 40, 37; +001-2-22,40,37,0 script #savepoint0-001-2-22 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; close; OnInit: .distance = 2; + .sex = G_OTHER; end; } -001-2-22,46,37,0 script #001-2-22-2 NPC_SAVE_POINT,{ - savepointparticle "001-2-22.gat", 46, 37; +001-2-22,46,37,0 script #savepoint1-001-2-22 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; close; OnInit: .distance = 2; + .sex = G_OTHER; end; } -001-2-22,50,38,0 script #001-2-22-3 NPC_SAVE_POINT,{ - savepointparticle "001-2-22.gat", 50, 38; +001-2-22,50,38,0 script #savepoint2-001-2-22 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; close; OnInit: .distance = 2; + .sex = G_OTHER; end; } -001-2-22,55,40,0 script #001-2-22-4 NPC_SAVE_POINT,{ - savepointparticle "001-2-22.gat", 55, 40; +001-2-22,55,40,0 script #savepoint3-001-2-22 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; close; OnInit: .distance = 2; + .sex = G_OTHER; end; } -001-2-22,53,38,0 script #001-2-22-5 NPC_SAVE_POINT,{ - savepointparticle "001-2-22.gat", 53, 38; +001-2-22,53,38,0 script #savepoint4-001-2-22 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; close; OnInit: .distance = 2; + .sex = G_OTHER; end; } diff --git a/npc/001-2-22/savepoints.txt b/npc/001-2-22/savepoints.txt new file mode 100644 index 00000000..b2f139e2 --- /dev/null +++ b/npc/001-2-22/savepoints.txt @@ -0,0 +1,55 @@ +// Evol scripts. +// Author: +// Reid +// Description: +// Free save point. + +001-2-22,40,37,0 script #savepoint0-001-2-22 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; + close; + +OnInit: + .distance = 2; + .sex = G_OTHER; + end; +} + +001-2-22,46,37,0 script #savepoint1-001-2-22 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; + close; + +OnInit: + .distance = 2; + .sex = G_OTHER; + end; +} + +001-2-22,50,38,0 script #savepoint2-001-2-22 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; + close; + +OnInit: + .distance = 2; + .sex = G_OTHER; + end; +} + +001-2-22,55,40,0 script #savepoint3-001-2-22 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; + close; + +OnInit: + .distance = 2; + .sex = G_OTHER; + end; +} + +001-2-22,53,38,0 script #savepoint4-001-2-22 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; + close; + +OnInit: + .distance = 2; + .sex = G_OTHER; + end; +} diff --git a/npc/001-2-3/_import.txt b/npc/001-2-3/_import.txt index a916d43f..bba0b5ce 100644 --- a/npc/001-2-3/_import.txt +++ b/npc/001-2-3/_import.txt @@ -1,2 +1,3 @@ npc: npc/001-2-3/mapflags.txt +npc: npc/001-2-3/savepoints.txt npc: npc/001-2-3/_warps.txt diff --git a/npc/001-2-3/savepoints.txt b/npc/001-2-3/savepoints.txt new file mode 100644 index 00000000..799ac40e --- /dev/null +++ b/npc/001-2-3/savepoints.txt @@ -0,0 +1,15 @@ +// Evol scripts. +// Author: +// Reid +// Description: +// Free save point. + +001-2-3,42,32,0 script #savepoint0-001-2-3 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; + close; + +OnInit: + .distance = 2; + .sex = G_OTHER; + end; +} diff --git a/npc/001-2-37/_import.txt b/npc/001-2-37/_import.txt index dbb4069a..c7e1b73f 100644 --- a/npc/001-2-37/_import.txt +++ b/npc/001-2-37/_import.txt @@ -1,4 +1,5 @@ // Map 001-2-37 -npc: npc/001-2-37/_warps.txt npc: npc/001-2-37/hammock.txt npc: npc/001-2-37/mapflags.txt +npc: npc/001-2-37/savepoints.txt +npc: npc/001-2-37/_warps.txt diff --git a/npc/001-2-37/savepoints.txt b/npc/001-2-37/savepoints.txt new file mode 100644 index 00000000..5664a390 --- /dev/null +++ b/npc/001-2-37/savepoints.txt @@ -0,0 +1,45 @@ +// Evol scripts. +// Author: +// Reid +// Description: +// Free save point. + +001-2-37,25,41,0 script #savepoint0-001-2-37 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; + close; + +OnInit: + .distance = 2; + .sex = G_OTHER; + end; +} + +001-2-37,35,41,0 script #savepoint1-001-2-37 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; + close; + +OnInit: + .distance = 2; + .sex = G_OTHER; + end; +} + +001-2-37,25,46,0 script #savepoint2-001-2-37 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; + close; + +OnInit: + .distance = 2; + .sex = G_OTHER; + end; +} + +001-2-37,35,46,0 script #savepoint3-001-2-37 NPC_SAVE_POINT,{ + savepointparticle .map$, .x, .y, CURRENT_INN; + close; + +OnInit: + .distance = 2; + .sex = G_OTHER; + end; +} 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; +} -- cgit v1.2.3-70-g09d2