06.04.2010, 10:49
An optimisation of this plugin will be awsome ... :
First of all , why did you used charcater '_' ?
And at for loops , why at top of script , you didn't declared a s ?
int s;
In your plugin , you declared s for 22 times
And at arrays , it was so hard to count how much numbers did you wrote ?
etc.
First of all , why did you used charcater '_' ?
And at for loops , why at top of script , you didn't declared a s ?
int s;
In your plugin , you declared s for 22 times
And at arrays , it was so hard to count how much numbers did you wrote ?
pawn Code:
int Airplanes[] = {592,577,511,512,593,520,553,476,519,460,513};
int Airplanes[12] = {592,577,511,512,593,520,553,476,519,460,513}; /* 11 + 1 */