Wieso geht das nicht?
Function LoadBenzin()
{
new arrCoords[7][64];
new strFromFile2[256];
new File: file = fopen("benzin.ini", io_read);
if (file)
{
fread(file, strFromFile2);
split(strFromFile2, arrCoords, ',');
Benzin = strval(arrCoords[0]);
fclose(file);
if(Security == 0)
{
}
else
{
GameModeExit();
}
}
else
{
GameModeExit();
}
return 1;
}
Function SaveBenzin()
{
new coordsstring[256];
format(coordsstring, sizeof(coordsstring), "%d", Benzin);
new File: file2 = fopen("benzin.ini", io_write);
fwrite(file2, coordsstring);
fclose(file2);
return 1;
}
if(strcmp(cmd, "/LoadBen", true) == 0)
{
Benzin = 1000;
return 1;
}
Das ist jetzt nur ein testbefehl gewesen aber wieso geht das nicht?
MfG James