13.12.2014, 14:46
C'mon guys, what's the problem? Why do i get that error ?
Here is everything related to this command :
Error:
Here is everything related to this command :
Код:
#define DialogPlane 103
Код:
enum TPlane { PlaneName[50], // Holds the name of the Plane PlaneModel // Holds the model-ID of the Plane } new APlanes[][TPlane] = { {"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 }; //============================================================================== 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, DialogPlane, DIALOG_STYLE_LIST, "Planes", 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; }
Код:
(222) : error 048: array dimensions do not match