replace
if (lastwarp$ == "")
message strcharinfo(0),"You haven't warped anywhere yet.";
else
warp lastwarp$,lastwarpx,lastwarpy;
end;
to
if (lastwarp$ == "")
message strcharinfo(0),"You haven't warped anywhere yet.";
else {
sc_end SC_GEFFEN_MAGIC3;
warp lastwarp$,lastwarpx,lastwarpy;
}
end;
and replace
function Go {
set lastwarp$, getarg(0);
set lastwarpx, getarg(1,0);
set lastwarpy, getarg(2,0);
warp getarg(0),getarg(1,0),getarg(2,0);
end;
}
to
function Go {
set lastwarp$, getarg(0);
set lastwarpx, getarg(1,0);
set lastwarpy, getarg(2,0);
sc_end SC_GEFFEN_MAGIC3;
warp getarg(0),getarg(1,0),getarg(2,0);
end;
}
Another Note:
I haven't tested with this status, I tested with sc_freeze and it worked, should work with this status too
Another Note ++ : @mrfizi is too fast >_<