SA-MP Forums Archive
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=633710)



array must be indexed - NealPeteros - 06.05.2017

Is there something wrong in these statements? This is placed on OnDialogResponse Error is the title

PHP код:
if(inputtext == "test")
{
    
websiteOutput[playerid] = 1;




Re: array must be indexed - Toroi - 06.05.2017

use the strcmp function to compare strings


Re: array must be indexed - BlueGames - 06.05.2017

For explain.

if(strfind(inputtext, "test")
{
websiteOutput[playerid] = 1;
}