SA-MP Forums Archive
Vehicle ids not right or something im doing wrong please help - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Vehicle ids not right or something im doing wrong please help (/showthread.php?tid=95127)



Vehicle ids not right or something im doing wrong please help - International - 02.09.2009

Ok so the code

else if(!strcmp(playername,"BusService",true)) {
PutPlayerInVehicle(playerid,431,0);
SetPlayerColor(playerid,0xFFFFFFFF);

Well i use the vehicle id 431 as an ID for the bus but it appears as a forklift truck can anyone help?


Re: Vehicle ids not right or something im doing wrong please help - Justsmile - 02.09.2009

use variable for this.
new bus1;

OnGameModeInit()

bus1 = AddStatiVehiceEx(modelid, y,x,z,angel,color1,color2,delay);


Re: Vehicle ids not right or something im doing wrong please help - Double-O-Seven - 02.09.2009

Omfg you use ModelID instead of VehicleID...


Re: Vehicle ids not right or something im doing wrong please help - International - 02.09.2009

How can i find out the modelID?


Re: Vehicle ids not right or something im doing wrong please help - Justsmile - 02.09.2009

YOU USED THE MODELID. YOu have to count to get the Car ID^^

its PutPlayerInVehicle(playerid, CARID, seatid);


Re: Vehicle ids not right or something im doing wrong please help - Frankylez - 02.09.2009

Quote:
Originally Posted by Bl4ckDice
YOU USED THE MODELID. YOu have to count to get the Car ID^^

its PutPlayerInVehicle(playerid, CARID, seatid);
Double-O-Seven just mentioned that 6 minutes before your post:
Quote:
Originally Posted by Double-O-Seven
Omfg you use ModelID instead of VehicleID...
To get the model ID, you have to go to wiki.sa-mp.com and browse the vehicle list. However what you need is the vehicle ID.
This is a real quick example how to tell difference between a model ID and a vehicle ID:
Код:
// OnPlayerCommandText(playerid, cmdtext[])
if(!strcmp(cmdtext, "/test", true))
{
  new modelID = GetVehicleModel(GetPlayerVehicleID(playerid)),
    vehID = GetPlayerVehicleID(playerid),
    str[128];
  format(str, sizeof(str), "model ID -> %d", modelID);
  SendClientMessage(playerid, COLOR, str);
  format(str, sizeof(str), "vehicle ID -> %d", vehID);
  SendClientMessage(playerid, COLOR, str);
  return true;
}



Re: Vehicle ids not right or something im doing wrong please help - Justsmile - 02.09.2009

I noticed it, but i want to repeat it for him. Be carefull^^