Savebiz help
#1

I am creating a biz system and when the businesses save, the last biz on the list copies itsself and it gets saved multiple times.

this is what the saved business look like:

its always the last on on the list that gets copied.

Код:
6|3|The State|810.887084|-1616.286499|13.546875|0|0|1|200000|0|Store41|205|50|50|50|50|50|50|0|0.000000|0.000000|0.000000|0.000000
5|3|The State|1631.909057|-1172.373046|24.084280|0|0|1|200000|0|Tax|150|50|50|50|50|50|50|0|0.000000|0.000000|0.000000|0.000000
20|3|The State|2442.482666|-2126.444580|14.164052|0|0|1|200000|0|TruckingBoss|113|50|50|50|50|50|50|1|2478.854492|-2111.114013|13.546895|91.180900
2|3|The State|1457.316284|-1137.367553|23.962814|0|0|1|200000|0|Clothes4|211|50|50|50|50|50|50|0|0.000000|0.000000|0.000000|0.000000
20|3|The State|2281.120117|-2365.066894|13.546875|0|0|1|200000|0|TowingBoss|120|50|50|50|50|50|50|2|2283.864501|-2352.406982|13.417593|226.547897
20|3|The State|1555.311889|-1675.596435|16.195312|0|0|1|200000|0|PoliceBoss|281|50|50|50|50|50|50|3|1537.270263|-1658.388916|5.612500|181.568099
4|3|The State|1022.479064|-1121.656005|23.871921|0|0|1|200000|0|Club|64|50|50|50|50|50|50|0|0.000000|0.000000|0.000000|0.000000
0|3|The State|1022.479064|-1121.656005|23.871921|0|0|1|200000|0|Club|64|50|50|50|50|50|50|0|0.000000|0.000000|0.000000|0.000000
0|3|The State|1022.479064|-1121.656005|23.871921|0|0|1|200000|0|Club|64|50|50|50|50|50|50|0|0.000000|0.000000|0.000000|0.000000
0|3|The State|1022.479064|-1121.656005|23.871921|0|0|1|200000|0|Club|64|50|50|50|50|50|50|0|0.000000|0.000000|0.000000|0.000000
0|3|The State|1022.479064|-1121.656005|23.871921|0|0|1|200000|0|Club|64|50|50|50|50|50|50|0|0.000000|0.000000|0.000000|0.000000
0|3|The State|1022.479064|-1121.656005|23.871921|0|0|1|200000|0|Club|64|50|50|50|50|50|50|0|0.000000|0.000000|0.000000|0.000000
0|3|The State|1022.479064|-1121.656005|23.871921|0|0|1|200000|0|Club|64|50|50|50|50|50|50|0|0.000000|0.000000|0.000000|0.000000
0|3|The State|1022.479064|-1121.656005|23.871921|0|0|1|200000|0|Club|64|50|50|50|50|50|50|0|0.000000|0.000000|0.000000|0.000000
0|3|The State|1022.479064|-1121.656005|23.871921|0|0|1|200000|0|Club|64|50|50|50|50|50|50|0|0.000000|0.000000|0.000000|0.000000
0|3|The State|1022.479064|-1121.656005|23.871921|0|0|1|200000|0|Club|64|50|50|50|50|50|50|0|0.000000|0.000000|0.000000|0.000000
0|3|The State|1022.479064|-1121.656005|23.871921|0|0|1|200000|0|Club|64|50|50|50|50|50|50|0|0.000000|0.000000|0.000000|0.000000
0|3|The State|1022.479064|-1121.656005|23.871921|0|0|1|200000|0|Club|64|50|50|50|50|50|50|0|0.000000|0.000000|0.000000|0.000000
Savebiz function:
Код:
stock SaveBiz()
{
    if(!fexist("biz.cfg")) fcreate("biz.cfg");
	new idx = 1, File:file;
	new string[500];
	new string1[500];
	new string2[500];
	while(idx < MAX_BIZ)
	{
	    format(string, sizeof(string), "%d|%d|%s|%f|%f|%f|%d|%d|%d|%d|%d|%s|%d|%d|%d|%d|%d|%d|%d", BizInfo[idx][bType], BizInfo[idx][bStatus], BizInfo[idx][bOwner], BizInfo[idx][bX], BizInfo[idx][bY], BizInfo[idx][bZ], BizInfo[idx][bMoney], BizInfo[idx][bSold], BizInfo[idx][bLevel], BizInfo[idx][bPrice], BizInfo[idx][bAP], BizInfo[idx][bNpc], BizInfo[idx][bNpcS], BizInfo[idx][b1Am], BizInfo[idx][b2Am], BizInfo[idx][b3Am], BizInfo[idx][b4Am], BizInfo[idx][b5Am]);
	    format(string1, sizeof(string1), "%d|%d|%f|%f|%f|%f\r\n", BizInfo[idx][b6Am], BizInfo[idx][bOfficeType], BizInfo[idx][bActionX], BizInfo[idx][bActionY], BizInfo[idx][bActionZ], BizInfo[idx][bActionAngle]);
	    format(string2, sizeof(string2), "%s%s", string, string1);
	    if(idx == 1)
	    {
	        file = fopen("biz.cfg", io_write);
	    }
	    else
	    {
	    	file = fopen("biz.cfg", io_append);
	    }
		fwrite(file, string2);
		fclose(file);
		idx++;
	}
	print("Businesses saved successfully.");
}
please help me
Reply


Messages In This Thread
Savebiz help - by jeffery30162 - 20.07.2014, 16:24
Re: Savebiz help - by Metharon - 20.07.2014, 16:33
Re: Savebiz help - by jeffery30162 - 20.07.2014, 16:38
Re: Savebiz help - by jeffery30162 - 20.07.2014, 17:48
Re: Savebiz help - by Scottas - 20.07.2014, 20:50
Re: Savebiz help - by jeffery30162 - 20.07.2014, 21:40
Re: Savebiz help - by Scottas - 21.07.2014, 03:23

Forum Jump:


Users browsing this thread: 2 Guest(s)