Moin,
Da ich beim Thema Autohaus und Mysql keien Lösung finde, habe ich mich entschieden das Autohaussystem per filesystem zu machen.
Doch wenn ich die Datei erstellen soll, erstellt er keine.
Habe folgenden Code:
new Float:x,Float:y,Float:z;
GetVehiclePos(vehid,x,y,z);
new autohaus[1000];
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid,name,sizeof(name));
format(autohaus,sizeof(autohaus),"/scriptfiles/autohaus/%s.txt",name);
dini_Create(autohaus);
dini_FloatSet(autohaus,"posx",x);
dini_FloatSet(autohaus,"posy",y);
dini_FloatSet(autohaus,"posz",z);
Normalerweise sollte das doch funktionieren, nur warum tut es das nicht?
Gruß