multiply all biz
#1

How can I make tax business like 1000 x all created biz which means like 1k per biz
Reply
#2

If you're using mysql to save business info (such as id, x, y, z, price and so on), then you can try with this:

OnGameModeInit:

pawn Код:
mysql_tquery(g_SQL, "SELECT * FROM `business`", "Business_Load");
pawn Код:
public  Business_Load()
{
    for(new i, j = cache_num_rows(); i != j; i++)
    {
        if(i < MAX_BUSINESSES)
        {
                //Your business loading code
               //Set your tax code here
        }
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)