28.09.2012, 00:22
Quote:
Look the code I given u will not work as u need to fill it In!
The second variable is missing which you need to check yourself. |
@OP: Create an enum with all vehicleinfo that you need and then create a variable out of that enum. For instance:
pawn Код:
enum vInf = { // not even sure if the equals-sign needs to be there
vId,
vCol1,
vCol2
};
new VehicleInfo[MAX_VEHICLES][vInf];
// you can now call a variable like this:
VehicleInfo[vehicleid][vCol1];