summaryrefslogtreecommitdiff
path: root/npc/functions/savepoint.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/savepoint.txt')
-rw-r--r--npc/functions/savepoint.txt14
1 files changed, 8 insertions, 6 deletions
diff --git a/npc/functions/savepoint.txt b/npc/functions/savepoint.txt
index 9a8eae78..5e8838fa 100644
--- a/npc/functions/savepoint.txt
+++ b/npc/functions/savepoint.txt
@@ -3,13 +3,15 @@
// Reid
// Description:
// Adds a new save point location.
+// Description:
+// Save location with arguments:
+// getarg(0) map name,
+// getarg(1) x's value,
+// getarg(2) y's value.
function script SavePoint {
+ message strcharinfo(0), "Your position has been saved.";
- npctalk3 "Your position has been saved.";
-
- savepoint @map$, @x, @y;
- set @q, getcharid(3);
- misceffect 4, @q;
-
+ savepoint getarg(0), getarg(1), getarg(2);
+ misceffect 4, getcharid(3);
}