19.03.2012, 12:23
Hello guys I need a little Timer who sets with a command (/follow) a marker every 5 secs.
I just need to add every 5 secs a checkpoint:
And a command like /stopfollow who stops the timer and the CP creation. +REP!
I just need to add every 5 secs a checkpoint:
pawn Код:
CMD:follow(playerid, params[])
{
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
SetPlayerCheckpoint(i, X, Y, Z, 5.0);
return 1;
}