hey Könnte mir mal einer helfen?
Ich suche ein Sogenantes HP Car . Das sind autos die Unendlich Leben haben!
Ich habe Gehört Es Soll Mit SetVehicleHealth gehen.
Könnte mir mal jemand helfen pls? ich habe hier mal ein Paar Lines
Ich Würde Gerne Ein System Erstellen Das man Autos als Admin Spawnt sie auch an User Verschenken so das die ihr Auto dann haben.
forward GodCarFix();
new IsGodCar[MAX_VEHICLES];
// the 2 defines below are if you DONT already have them, do NOT add them if you already have them
#define COLOR_YELLOW 0xFFFF00AA
#define COLOR_RED 0xAA3333AA
if(strcmp(cmd, "/setgodcar", true) == 0)
{
if(IsPlayerAdmin(playerid))
{
new string[256];
carid = GetPlayerVehicleID(playerid);
IsGodCar[carid] = 1;
format(string, sizeof(string), "You have made vehicle id %d a god car!", carid);
SendClientMessage(playerid, COLOR_YELLOW, string);
return 1;
}
else
{
SendClientMessage(playerid, COLOR_RED, "You must be an RCON admin to use this command!");
}
return 1;
}
SetTimer("GodCarFix", 1000, 1);
public GodCarFix()
{
for(new v=0;v<MAX_VEHICLES;v++)
{
if(IsGodCar[v] == 1)
{
SetVehicleHealth(v, 1000);
}
}
return 1;
}
Ich habe das alles Reingetan
Doch bei mir kommen 2 Error undzwar genau an diesen Stellen IsGodCar[carid] = 1; 1 Error wegen Carid?
und hier carid = GetPlayerVehicleID(playerid); auch wegen Carid
Bitte Um Hilfe Skype Name : Carey_Mahoney