18.10.2017, 20:10
Enums just cant contain 2D arrays. Thats a limitation of pawn. Possibly YSI got some workaround for that though, give it a look.
Thats because MemberName is just a regular string in your code, so [MemberName][1] refers to the substring of it starting at position 1, thus it skips the 'M'.
hStorage in the #define is the name of an enum element in the example. You need to change it to the name of you pseudo-2d-array name: MemberName
Quote:
anyone know where the problem is? GroupInfo[21][MemberName][1] should be " ", but instead it's "essage"
|
hStorage in the #define is the name of an enum element in the example. You need to change it to the name of you pseudo-2d-array name: MemberName
Код:
#define MemberName][%1][%2] MemberName][((%1)*hStorage_size2)+(%2)]