Must be a constant expression; assumed zero
#1

What's the matter ?

Код:
new APlanes[] =
{
	{"Andromada", 592},		{"AT400", 577}, 	     {"Beagle", 511},				{"Cargobob", 548},          // ID 0, 1, 2, 3
	{"Cropduster", 512},	        {"Dodo", 593},	      {"Hunter", 425},				{"Hydra", 520},             // ID 4, 5, 6, 7
	{"Leviathan", 417},		{"Maverick", 487},     {"Nevada", 553},				{"Police Maverick", 497},   // ID 8, 9, 10, 11
	{"Raindance", 563},		{"Rustler", 476},	       {"SAN News Maverick", 488},		{"Seasparrow", 447},        // ID 12, 13, 14, 15
	{"Shamal", 519},		        {"Skimmer", 460},	{"Sparrow", 469},			{"Stuntplane", 513}         // ID 16, 17, 18, 19
};
This is the error:

Код:
(201) : error 008: must be a constant expression; assumed zero
I am trying to make a command that spawns the given planes on the list, here is the rest of the command:

Код:
#define DIALOG_PLANE 1
//==============================================================================
CMD:vplane(playerid, params[])
{
    // Check if the player's admin-level is at least 1
    if(PlayerInfo[playerid][pVIP] >= 2)
    {
         // Make sure the player isn't inside a vehicle
         if (GetPlayerVehicleID(playerid) == 0)
         {
             // Ask which motorcycle the player wants to have
             ShowPlayerDialog(playerid, DIALOG_PLANE, DIALOG_STYLE_LIST, "Choose a plane:", APlanes, "Spawn", "Cancel");
             // Let the server know that this was a valid command
             return 1;
         }
	}
	else
	    return 0;

	// Let the server know that this was a valid command
	return 1;
}
Reply


Messages In This Thread
Must be a constant expression; assumed zero - by Jhony_Blaze - 13.12.2014, 15:29
Re: Must be a constant expression; assumed zero - by Jhony_Blaze - 13.12.2014, 17:19
AW: Must be a constant expression; assumed zero - by Nero_3D - 13.12.2014, 18:33
Re: AW: Must be a constant expression; assumed zero - by Jhony_Blaze - 13.12.2014, 18:41
Re: Must be a constant expression; assumed zero - by Mic_H - 13.12.2014, 21:07

Forum Jump:


Users browsing this thread: 1 Guest(s)