diff options
-rw-r--r-- | npc/000-2-1/savepoint.txt | 8 | ||||
-rw-r--r-- | npc/functions/savepoint.txt | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/npc/000-2-1/savepoint.txt b/npc/000-2-1/savepoint.txt index fc5bd4054..3b81de39b 100644 --- a/npc/000-2-1/savepoint.txt +++ b/npc/000-2-1/savepoint.txt @@ -5,7 +5,7 @@ // Saves locations in 000-2-1 map. 000-2-1,40,37,0 script #name1 901,{ - savepoint "000-2-1.gat", 40, 37; + savepointparticle "000-2-1.gat", 40, 37; close; OnInit: @@ -14,7 +14,7 @@ OnInit: } 000-2-1,46,37,0 script #name2 901,{ - savepoint "000-2-1.gat", 46, 37; + savepointparticle "000-2-1.gat", 46, 37; close; OnInit: @@ -23,7 +23,7 @@ OnInit: } 000-2-1,50,38,0 script #name3 901,{ - savepoint "000-2-1.gat", 50, 38; + savepointparticle "000-2-1.gat", 50, 38; close; OnInit: @@ -32,7 +32,7 @@ OnInit: } 000-2-1,55,40,0 script #name4 901,{ - savepoint "000-2-1.gat", 55, 40; + savepointparticle "000-2-1.gat", 55, 40; close; OnInit: diff --git a/npc/functions/savepoint.txt b/npc/functions/savepoint.txt index 1957ef813..f224fd55b 100644 --- a/npc/functions/savepoint.txt +++ b/npc/functions/savepoint.txt @@ -9,7 +9,7 @@ // getarg(1) x's value, // getarg(2) y's value. -function script savepoint { +function script savepointparticle { message strcharinfo(0), "Your position has been saved."; savepoint getarg(0), getarg(1), getarg(2); |