19.10.2009, 19:18
can someone tell me how to make a little script to let a car flip?

if(IsPlayerInAnyVehicle(playerid))
{
new vehicleid = GetPlayerVehicleID(playerid);
new Float:x, Float:y, Float:z;
GetVehiclePos(vehicleid, x, y, z);
SetVehiclePos(vehicleid, x, y, z);
}
Originally Posted by Don Correlli
pawn Код:
|
if(strcmp(cmdtext, "/flip", true) == 0)
{
//the code here
return 1;
}