Quote:
Originally Posted by Konstantinos
Replace:
pawn Код:
new pSMS[MAX_PLAYERS][SMS][MAX_SMS];
to:
pawn Код:
new pSMS[MAX_PLAYERS][MAX_SMS][SMS];
and swap all the rest as well, for example this:
pawn Код:
pSMS[playerid][Message][listitem]
becomes:
pawn Код:
pSMS[playerid][listitem][Message]
and so on. The sms-id first and last the item of the enumerator.
|
Thanks Konstantinos it worked, can you explain me why it happens?