Posts: 52
Threads: 13
Joined: Jun 2017
Reputation:
0
Hello guys I was just asking if there's any way to increase the maximum number of dimensions in pawno maybe a patch or something.
Posts: 1,071
Threads: 24
Joined: Aug 2014
Reputation:
0
What do you mean by Dimensions? If you mean limits, then no. Because those are GTA SA's limits not Pawno's. And if you mean XYZ Dimensions, then again no cuz, there are no more dimensions.
Posts: 52
Threads: 13
Joined: Jun 2017
Reputation:
0
I mean like when I declare this
new iGroupRank[MAX_FACTIONS][MAX_FACTIONS_DIVS][MAX_FACTIONS_RANK][128];
I get this error ( error 053: exceeding maximum number of dimensions )
So I'm looking for a way to increase dimensions or at least a solution
Posts: 1,071
Threads: 24
Joined: Aug 2014
Reputation:
0
Oh you mean Array Dimensions. I dont think Pawn supports more than 3 Dimensions.
Posts: 52
Threads: 13
Joined: Jun 2017
Reputation:
0
Is there any way to make that Idea works ?
It's about that for example a faction can have 5 divisions each division can have 10 ranks
Posts: 1,071
Threads: 24
Joined: Aug 2014
Reputation:
0
You will have to create another array with Faction ID as a common index in iGroupRank and your other array.
Posts: 52
Threads: 13
Joined: Jun 2017
Reputation:
0
Thanks I solved it using enum that was better