04.11.2014, 09:28
pawn Код:
new Float: gPos[MAX_PLAYERS][3];// Global
CMD:afk(playerid)
{
GetPlayerPos(playerid, gPos[playerid][0], gPos[playerid][1], gPos[playerid][2]);
SetPlayerPos(playerid, ...);
// ...
return 1;
}
CMD:back(playerid)
{
SetPlayerPos(playerid, gPos[playerid][0], gPos[playerid][1], gPos[playerid][2]);
// ...
return 1;
}