summaryrefslogtreecommitdiff
path: root/npc/functions/savepoint.txt
blob: 453bab0dd4246cc59d90ddc81466c43dea502e00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Evol functions.
// Author:
//    Reid
// Description:
//    Adds a new save point location.

function	script	SavePoint	{

    message strcharinfo(0), l("Your position has been saved.");

    savepoint @map$, @x, @y;
    set @q, getcharid(3);
    misceffect 4, @q;

}