26.11.2010, 00:20
I know what the problem is.
strlen? That's 0 right now. So you're allowing for a string length of 0 characters.
I don't think that will work however, so you can use...
pawn Код:
strmid(Groups[i][GroupName], data, false, strlen(Groups[i][GroupName]), 255);
pawn Код:
strmid(Groups[i][GroupName], data, false, sizeof(Groups[i][GroupName]), 255);
pawn Код:
strmid(Groups[i][GroupName], data, false, 70, 255);