30.07.2017, 23:48
Nгo testei tenta ae.
PHP код:
CMD:localizar(playerid, params[])
{
new id;
if(sscanf(params,"u[24]", id)) return SendClientMessage(playerid, -1, "Uso correto: /localizar [id]");
if(strcmp(params, "off", true) == 0)
{
DisablePlayerCheckpoint(id);
SendClientMessage(playerid, -1, "Sistema de localizaзгo desligado.");
}
new Float:Dx, Float:Dy, Float:Dz;
GetPlayerPos(id, Dx, Dy, Dz);
SetPlayerCheckpoint(id, Dx, Dy, Dz, 6);
SendClientMessage(playerid, -1, "Sistema de localizaзгo ativado.");
return 1;
}