04.02.2014, 14:03
A) That's not an error.
B) You're re-defining your variables. Making them shatdows.
To fix this, you'll need to replace inside your script or the include, as you choose.
Variables into differnt names, for example:
B) You're re-defining your variables. Making them shatdows.
To fix this, you'll need to replace inside your script or the include, as you choose.
Variables into differnt names, for example:
pawn Код:
new _panels, _doors, _lights, _tires; // old panels, doors, lights, tires.
/* code ..*/ _panels; // old panels
/* code */ _doors; // old doors
/* code */ _lights; // old lights
/* code */ _tires; // old tires