13.12.2014, 15:29
What's the matter ?
This is the error:
I am trying to make a command that spawns the given planes on the list, here is the rest of the command:
Код:
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
};
Код:
(201) : error 008: must be a constant expression; assumed zero
Код:
#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;
}


