22.05.2010, 18:31
hum, o que me levou o mudar?
P.S: estava falando do salvador de IPs
DESBUGAR JOGADOR
P.S: estava falando do salvador de IPs
DESBUGAR JOGADOR
pawn Code:
if(strcmp(cmd, "/desbug", true) == 0)
{
if(IsPlayerConnected(playerid))//VERIFICA SE ESTA CONECTADO
{
new Float:Px = 0.000000, Float:Py = 0.000000, Float:Pz = 0.000000, Float:Pa = 0.000000;
GetPlayerPos(playerid, Px, Py, Pz);//PEGA POS
GetPlayerFacingAngle(playerid, Pa);//PEGA ANGULO
RemovePlayerFromVehicle(playerid);//REMOVE VEICULO SE ESTIVE
SetPlayerPos(playerid, Px, Py, (Pz+3), Pa, -1);//JOGA PLAYER AO ALTO PARA DESBUGAR (NAO MATA)
TogglePlayerControllable(playerid,1);//SE TIVE CONGELADO DESONGLEA
}
return 1;
}