/stats won't show up anymore..
#8

Compile with debug info: https://github.com/Zeex/samp-plugin-...ith-debug-info

so the first 2 of the amx backtrace might get shown. Although, I found the mistake:
pawn Код:
f2text = FamilyInfo[PlayerInfo[targetid][pFMember]][FamilyName];
FamilyInfo has size of 10 (0-9 the valid indexes). PlayerInfo[targetid][pFMember] is 29 and it exceeds the bounds. You can prevent it by checking its value:
pawn Код:
if (0 <= PlayerInfo[targetid][pFMember] < sizeof (FamilyInfo))
{
    f2text = FamilyInfo[PlayerInfo[targetid][pFMember]][FamilyName];
    // if you want to copy a string to another, you shouldn't use '=' but strcat, memcpy or format
}
Reply


Messages In This Thread
/stats won't show up anymore.. - by whando - 12.04.2014, 19:01
Re: /stats won't show up anymore.. - by MattTucker - 12.04.2014, 19:20
Re: /stats won't show up anymore.. - by MrCallum - 12.04.2014, 19:21
Re: /stats won't show up anymore.. - by Konstantinos - 12.04.2014, 19:26
Re: /stats won't show up anymore.. - by whando - 12.04.2014, 19:32
Re: /stats won't show up anymore.. - by Konstantinos - 12.04.2014, 19:34
Re: /stats won't show up anymore.. - by whando - 12.04.2014, 19:42
Re: /stats won't show up anymore.. - by Konstantinos - 12.04.2014, 19:50
Re: /stats won't show up anymore.. - by whando - 12.04.2014, 20:03

Forum Jump:


Users browsing this thread: 1 Guest(s)