02.10.2016, 14:44
PHP код:
public BusinessTimer()
{
foreach(new i : Business)
{
if((gettime() - BusinessData[i][LastVisited]) > BUSINESS_DAYS * 86400)
{
Business_Reset(i);
continue;
}
if(!BusinessData[i][Closed] && BusinessData[i][SalePrice] == 0 && strcmp(BusinessData[i][Owner], "-"))
{
if(IsPlayerConnected(BusinessData[i][Owner])
{
BusinessData[i][Money] += BusinessData[i][Earning];
BusinessData[i][Save] = true;
}
}
if(BusinessData[i][Save]) Business_Save(i);
}
return 1;
}
the code should work and the earning is increased,but it doesnt