Posts: 23
Threads: 8
Joined: Jan 2010
Reputation:
0
Ok so when I try to add a new car to my gamemode/script it puts it as car id 1, and if i added 2 new cars it put it as 1, 2 and I need to change that and make it like 1000 or something but it still be scripted for the server faction and I was ok with it but it moved the bought vehicles to. Please help :\
Posts: 1,593
Threads: 65
Joined: Nov 2008
Reputation:
0
this makes not one bit of sense.
Posts: 602
Threads: 3
Joined: Jun 2009
Reputation:
0
You cannot change the actual vehicle ids.
You can however make an array of vehicle ids.
either like
new VehicleTeam[MAX_VEHICLES]; which is an array of the vehicle id matched to a team id.
or
new TeamAVehicles[100], TeamBVehicles[100]... which is a groups array of vehicles they own.