14.11.2013, 14:44
(
Последний раз редактировалось [WSF]ThA_Devil; 14.11.2013 в 18:10.
)
enum sNfo {
ShipObject[64]
};
new ShipInfo[MAX_VEHICLES][sNfo];
ShipInfo[veh][ShipObject[i]] = 1;
The script was real messy with OnFilterScriptInit and Exit everywhere and other stuff, but i wanna try it out |
ShipInfo[veh][ShipObject[i]] = 1;
ShipInfo[veh]ShipObject[i] = 1;
Try changing:
pawn Код:
pawn Код:
|
new ShipInfo[MAX_VEHICLES][sNfo];
enum sNfo {
ShipObject[64]
}
ShipInfo[vehicleid][ShipObject] = "String with a max char of 64";
Which means you can use it like this:
pawn Код:
|