Hey Leute ich habe eine frage wegen den Scriptfiles
und zwar ich gebe im script an
if(SaveServerMySQL == 0)
{
new idx;
new File: file2;
while (idx < sizeof(HouseInfo))
{
new coordsstring[256];
format(coordsstring, sizeof(coordsstring), "%s,%s,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d\n",
HouseInfo[idx][hOwner],
HouseInfo[idx][hBeschreibung],
HouseInfo[idx][hPreis],
HouseInfo[idx][hHealUpgrade],
HouseInfo[idx][hArmorUpgrade],
//HouseInfo[idx][hInt],
HouseInfo[idx][hLock],
HouseInfo[idx][hOwned],
HouseInfo[idx][hRooms],
HouseInfo[idx][hRent],
HouseInfo[idx][hRentabil],
HouseInfo[idx][hKasse],
//HouseInfo[idx][hDate],
HouseInfo[idx][hLevel]);
if(idx == 0)
{
file2 = fopen("Configs/property.cfg", io_write);
}
else
{
file2 = fopen("Configs/property.cfg", io_append);
}
fwrite(file2, coordsstring);
idx++;
fclose(file2);
}
idx = 0;
{
new idx;
new File: file2;
while (idx < sizeof(HouseInfo))
{
new coordsstring[256];
format(coordsstring, sizeof(coordsstring), "%s,%s,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d\n",
HouseInfo[idx][hOwner],
HouseInfo[idx][hBeschreibung],
HouseInfo[idx][hPreis],
HouseInfo[idx][hHealUpgrade],
HouseInfo[idx][hArmorUpgrade],
//HouseInfo[idx][hInt],
HouseInfo[idx][hLock],
HouseInfo[idx][hOwned],
HouseInfo[idx][hRooms],
HouseInfo[idx][hRent],
HouseInfo[idx][hRentabil],
HouseInfo[idx][hKasse],
//HouseInfo[idx][hDate],
HouseInfo[idx][hLevel]);
if(idx == 0)
{
file2 = fopen("Configs/property.cfg", io_write);
}
else
{
file2 = fopen("Configs/property.cfg", io_append);
}
fwrite(file2, coordsstring);
idx++;
fclose(file2);
}
idx = 0;
meine Frage ist diese Scriptfile habe ich nicht mehr ! habe aber eine property.cfg erstellt
etz ist meine Frage speichert das Script da was rein oder soll ich in die cfg selber was einfügen . ich hoffe ihr versteht was ich meine