Hi Brotfische,
Undzwar habe ich eine Frage nämöich wie erstelle ich eine Datei die Speichert wieviel Produkte z.B. die Tankstelle hat und wenn nur noch 0 Prods da sind das man da nicht mehr Tanken kann?
MfG James
Edit ich habe jetzt schonmal was gefunden wo wir es einfügen können?
Function LoadStuff()
{
new arrCoords[7][64];
new strFromFile2[256];
new File: file = fopen("stuff.ini", io_read);
if (file)
{
fread(file, strFromFile2);
split(strFromFile2, arrCoords, ',');
Jackpot = strval(arrCoords[0]);
Tax = strval(arrCoords[1]);
TaxValue = strval(arrCoords[2]);
Security = strval(arrCoords[3]);
PayDayTeiler = strval(arrCoords[4]);
LSAWaren = strval(arrCoords[5]);
FarmerDrogen = strval(arrCoords[6]);
fclose(file);
if(Security == 0)
{
}
else
{
GameModeExit();
}
}
else
{
GameModeExit();
}
return 1;
}