diff options
author | Reid <reidyaro@gmail.com> | 2012-04-09 23:56:59 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2012-04-09 23:56:59 +0200 |
commit | 4406b26d8d636f73a4956170f2c9da8321021ef3 (patch) | |
tree | 941e6aad6fbd47e0db7165c52e9be082a44e47ab /npc/000-2-1/savepoint.txt | |
parent | 7ac77d0b913dac0748f237a1851d564bbb32e25d (diff) | |
download | serverdata-4406b26d8d636f73a4956170f2c9da8321021ef3.tar.gz serverdata-4406b26d8d636f73a4956170f2c9da8321021ef3.tar.bz2 serverdata-4406b26d8d636f73a4956170f2c9da8321021ef3.tar.xz serverdata-4406b26d8d636f73a4956170f2c9da8321021ef3.zip |
Add new savepoint in 000-2-1 map,
Add fake savepoint in Nard's room.
Diffstat (limited to 'npc/000-2-1/savepoint.txt')
-rw-r--r-- | npc/000-2-1/savepoint.txt | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/npc/000-2-1/savepoint.txt b/npc/000-2-1/savepoint.txt index b6b00c3a..c671c716 100644 --- a/npc/000-2-1/savepoint.txt +++ b/npc/000-2-1/savepoint.txt @@ -2,11 +2,43 @@ // Authors: // Reid // Description: -// Save location in 000-2-1 map. +// Save locations in 000-2-1 map. 000-2-1.gat,30,37,0,2 script #name 999,{ - callfunc "SavePoint", "000-2-1.gat", 30, 37 + set @map$, "000-2-1.gat"; + set @x, 30; + set @y, 37; + callfunc "SavePoint"; close; } + +000-2-1.gat,36,37,0,2 script #name 999,{ + + set @map$, "000-2-1.gat"; + set @x, 36; + set @y, 37; + callfunc "SavePoint"; + close; + +} +000-2-1.gat,40,38,0,2 script #name 999,{ + + set @map$, "000-2-1.gat"; + set @x, 40; + set @y, 38; + callfunc "SavePoint"; + close; + +} + +000-2-1.gat,45,40,0,2 script #name 999,{ + + set @map$, "000-2-1.gat"; + set @x, 45; + set @y, 40; + callfunc "SavePoint"; + close; + +}
\ No newline at end of file |