Problem with business load system
#1

Hi everybody! I have a problem with my loading business system! When i enter game and when i go to place of the business it wont show for some reason(3d text label)...

I have no errors just to know

This is the code

Код:
stock LoadBusiness()
{
	new str[40];
    new sa[128];
	for(new id = 0; id < MAX_BUSINESS; id++)
	{
		format(str, sizeof(str), "Bizovi\%d", id);
		if(dini_Exists(str))
		{
			bInfo[id][bX] = dini_Float(str, "PosX");
			bInfo[id][bY] = dini_Float(str, "PosY");
			bInfo[id][bZ] = dini_Float(str, "PosZ");
			bInfo[id][bOwner] = dini_Int(str, "Vlasnik");
			bInfo[id][bPrice] = dini_Int(str, "Cijena");
			bInfo[id][bOwned] = dini_Int(str, "Kupljen");
			bInfo[id][bName] = dini_Int(str, "Ime");
			bInfo[id][bMoney] = dini_Int(str, "Kasa");
			format(sa, sizeof(sa), "Ime firme:%s\nVlasnik firme:%s\nCijena:%i\nPare u kasi:%i", bInfo[id][bName], bInfo[id][bOwner], bInfo[id][bPrice], bInfo[id][bMoney]);
			Create3DTextLabel(sa, 0x008080FF, bInfo[id][bX], bInfo[id][bY], bInfo[id][bZ], 40.0, 0, 0);
		}
		return 1;
	}
	return 1;
}
Can anybody help me?
Reply


Messages In This Thread
Problem with business load system - by andrejc999 - 22.06.2015, 23:40
Re: Problem with business load system - by X337 - 23.06.2015, 02:18
Re: Problem with business load system - by andrejc999 - 23.06.2015, 14:55
AW: Problem with business load system - by Mencent - 23.06.2015, 14:58
Re: Problem with business load system - by andrejc999 - 23.06.2015, 15:06
AW: Problem with business load system - by Mencent - 23.06.2015, 15:11
Re: Problem with business load system - by andrejc999 - 23.06.2015, 15:12
Re: Problem with business load system - by andrejc999 - 23.06.2015, 15:15
Re: Problem with business load system - by andrejc999 - 23.06.2015, 19:35

Forum Jump:


Users browsing this thread: 1 Guest(s)