23.01.2014, 05:36
Here is bug when i spawn a car and press ESC I got that:
NOTE: This happen when i load GarHouse V 2 System , but its bug!

http://postimg.org/image/6lmfg56bt/
NOTE: This happen when i load GarHouse V 2 System , but its bug!

http://postimg.org/image/6lmfg56bt/
Код:
public OnPlayerModelSelection(playerid, response, listid, modelid)
{
if(listid == vehlist)
{
if(response)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
CreateVehicleEx(playerid,modelid, X,Y,Z+1, Angle, random(126), random(126), -1);
}
else
SendClientMessage(playerid, 0xFF0000FF, "Canceled vehicle selection.");
return 1;
}
return 1;
}
