17.07.2010, 19:54
First; why are you dividing MAX_BIZ by 250 when declaring BizInfo?
(I assume you have this or something similar somewhere in your code)
If you can answer that, then you can fix the problem...
Because that would only give you 1 possible biz. If you want more, you'd be better off makeing it look like this:
That will give you the full 250 biz's your looking for.
(I assume you have this or something similar somewhere in your code)
pawn Код:
new BizInfo[MAX_BIZ/250];
Because that would only give you 1 possible biz. If you want more, you'd be better off makeing it look like this:
pawn Код:
new BizInfo[MAX_BIZ];