14.03.2014, 19:59
ola Peguei para editar uma gm de camioneiros so que estou aprendedo ainda ela deu este erro
http://prntscr.com/30snt3
http://prntscr.com/30snt3
Quote:
// Check if the player is not a pilot if (APlayerData[playerid][PlayerClass] != ClassPilot) { // First check if the vehicle is a static vehicle (player can still use a bought plane that he bought in his house, // as a bought vehicle isn't static) if (AVehicleData[vid][StaticVehicle] == true) { // Check if the entered vehicle is a plane or helicopter vehicle switch (GetVehicleModel(vid)) { case VehicleShamal, VehicleNevada, VehicleStuntPlane, VehicleDodo, VehicleMaverick, VehicleCargobob: { // Force the player out of the vehicle RemovePlayerFromVehicle(playerid); // Turn off the lights and engine GetVehicleParamsEx(vid, engine, lights, alarm, doors, bonnet, boot, objective); SetVehicleParamsEx(vid, 0, 0, alarm, doors, bonnet, boot, objective); // Let the player know he cannot use a cop car SendClientMessage(playerid, 0xFFFFFFFF, "{FF0000}Vocк nгo pode usar um veнculo de piloto."); } } } } } } return 1; |