Array must be indexed - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Array must be indexed (
/showthread.php?tid=567665)
Array must be indexed -
Binx - 15.03.2015
This is the line:
pawn Код:
if(GetPlayerNameEx(playerid) == BizInfo[IsInBusiness[playerid]][bOwner])
Saying "GetPlayerNameEx" must be indexed.
Re: Array must be indexed -
CalvinC - 15.03.2015
You should use strmcp to compare 2 strings.
https://sampwiki.blast.hk/wiki/Strcmp
Re: Array must be indexed -
Evocator - 15.03.2015
Код:
if (!strcmp(GetPlayerNameEx(playerid), BizInfo[IsInBusiness[playerid]][bOwner], true))