17.09.2010, 20:01
is ther any cmd to random threw fast cars, like stunt cars?
it would help meh
it would help meh
it would help meh
if(strcmp(cmdtext,"/randcar",true)==0)
{
new vModel;
new r = random(3);
if(r == 0) vModel = 415;
else if(r == 1) vModel = 411;
else vModel = 451;
new Float:pPos[3];
GetPlayerPos(playerid, pPos[0], pPos[1], pPos[2]);
CreateVehicle(vModel, pPos[0]+3, pPos[1], pPos[2], 0.0, -1, -1, -1);
return 1;
}