23.11.2014, 21:55
So I am making just a little repair car FS and there is some problems.
1. When you are outside of a car it says "The vehicle is too damage to repair" instead of "You must be inside a vehicle"
2. When the vehicle is under 900DL it sends the clientmessage but never repairs it.
Thanks for any help.
1. When you are outside of a car it says "The vehicle is too damage to repair" instead of "You must be inside a vehicle"
2. When the vehicle is under 900DL it sends the clientmessage but never repairs it.
Thanks for any help.
Код:
CMD:fixveh(playerid, params[]) { new Float:health; new veh = GetPlayerVehicleID(playerid); GetVehicleHealth(veh, health); { if(health > 900) return SendClientMessage(playerid, COLOR_RED, "Vehicle doesn't need repairing!"); else if(health < 500) return SendClientMessage(playerid, COLOR_RED, "Vehicle is too damaged! Get a mechanic!"); if(GetPlayerMoney(playerid) < 500) return SendClientMessage(playerid, COLOR_RED, "You don't have enough money! You need $500!"); else if(GetPlayerMoney(playerid) > 500) return SendClientMessage(playerid, COLOR_GREEN, "The vehicle is now repaired."); SetVehicleHealth(veh, 1000.0); GetPlayerMoney(playerid, -500); return 0 } IsPlayerInAnyVehicle(playerid); { if(false) return SendClientMessage(playerid, COLOR_RED, "You must be in a vehicle"); return 0 } return 1;