Posts: 407
Threads: 83
Joined: May 2011
Reputation:
0
How can I loop ONLY created vehicles? Because counting and updating MAX_VEHICLES is TOTAL stupidity.:/
Posts: 148
Threads: 5
Joined: Jun 2011
yes do new
new NAMEOFCRS[numberofvehiclesyouhave]
underongamemodeinit
NAMEOFCAR[0] = AddStaticVehicleEx(infohere,respawntime);
Posts: 407
Threads: 83
Joined: May 2011
Reputation:
0
Then I would need update [numberofvehiclesyouhave] -.-
Posts: 148
Threads: 5
Joined: Jun 2011
while then if your that worried about updateing set max vehicles to 999999 or somthing it does no harm
Posts: 148
Threads: 5
Joined: Jun 2011
#define MAX_VEHICLES 999999
it does no harm it just mean you can have infinate vehicles
Posts: 148
Threads: 5
Joined: Jun 2011
you just need to change the max vehicles and if max is 2000 my mega old script is kina fucked then because i did
new PEDCAR[999999999]; gave me no troubles
Posts: 407
Threads: 83
Joined: May 2011
Reputation:
0
You really dont understand what do I need exactly.