18.09.2011, 18:11
lol
nгo precisa
pawn Code:
cmd(trazer, playerid, params[])
{
new id;
if(sscanf(params,"u",id))
return SendClientMessage(playerid,ERRO,"USE: /trazer [id]");
new Float: x, Float:y, Float:z,string[256];
if(PlayerInfo[playerid][pAdmin] > 1)
{
GetPlayerName(playerid, caso1, sizeof(caso1));
SetPlayerInterior(id, GetPlayerInterior(playerid));
format(string, sizeof(string),"O administrador %s te trouxe atй ele");
SendClientMessage(id,ERRO,string);
GetPlayerPos(playerid,x,y,z);
SetPlayerPos(id,x, y, z+2);
}
return 1;
}