Guten Tag
Ich versuche grade ein Reparatur-System für Autos zu erstellen was mit ein Enum gemacht werden soll:
So habe ich es bis jetzt:
Enum:
enum repairpoint{
Float: r_x,
Float:r_y,
Float:r_z
}
2teil für mein enum:
new repair[][repairpoint]={
{2458.3711,1697.3431,18.3761},//repair1
{2453.4429,1697.5092,18.3761},//repair2
{2448.3379,1697.4446,18.3761},//repair3
{2443.7251,1697.3724,18.3761}//repair4
};
Reparierbefehl mit dem Enumpaoints:
ocmd:reparieren(playerid,params[])
{
for(new i=0;<sizeof(repair); i++)
{
if(!IsPlayerInRangeOfPoint(playerid,2,repair[i][r_x],repair[i][r_y],repair[i][r_z]))continue;
}
}
also ich komm bei dem Befehl nun nicht mehr weiter was ich als nächstes machen muss.
Brauche dabei sehr dringend hilfe.