08.01.2011, 01:20
Quote:
Why dosent the vehicle spawn and put the player in the vehicle?
pawn Код:
|
pawn Код:
if(listitem == 0) // Andromada
{
new Float:X, Float:Y, Float:Z, Float:A;
GetPlayerPos(playerid, X,Y,Z);
GetPlayerFacingAngle(playerid, A);
new vehicleid = CreateVehicle(592, X,Y,Z,A, -1, -1, -1);
PutPlayerInVehicle(playerid, vehicleid, 0);
return 1;
}