28.01.2013, 18:30
Vocк estб fazendo isso errado
Tem uma include que faz isso utilizando uma tecla ao invйs de comando
pawn Код:
if(!strcmp(cmdtext, "/speed", true)) {
if(!IsPlayerInAnyVehicle(playerid)) return 0;
new Float:x, Float:y, Float:z;
new vehid = GetPlayerVehicleID(playerid);
GetVehicleVelocity(vehid, x, y, z); SetVehicleVelocity(vehid, x + (x / 4), y + (y / 4), z + (z / 4));
return 1;
}