SA-MP Forums Archive
Error - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Error (/showthread.php?tid=163483)



Error - DragonBlaster50 - 27.07.2010

C:\Documents and Settings\Wouter\Bureaublad\SA-MP Scripting\pawno\CamperGM.pwn(307) : error 033: array must be indexed (variable "GarbageTrucks")

What does it mean, how to fix it?

Код:
new GarbageTrucks[3];
	if(vehicleid == GarbageTrucks)
	{
	ShowPlayerDialog(playerid, 1, DIALOG_STYLE_MSGBOX, "Garbage & Trash Cooperation", "Would you like to Work as a Garbage Man?", "Yes", "No");
	}
	return 1;
}



Re: Error - Calgon - 27.07.2010

pawn Код:
new GarbageTrucks[3];
    if(vehicleid == GarbageTrucks[0] || vehicleid == GarbageTrucks[1] || vehicleid == GarbageTrucks[2])
    {
    ShowPlayerDialog(playerid, 1, DIALOG_STYLE_MSGBOX, "Garbage & Trash Cooperation", "Would you like to Work as a Garbage Man?", "Yes", "No");
    }
    return 1;
}