08.02.2016, 18:56
OnVehicleDeath and OnVehicleRespawn, get fuel and save it.
Also small tip, can you tell what is common in each case state in vUpdate?
Its mysql_query(SQL, gQuery);
You can save up to 23 script lines, by putting mysql_query(SQL, gQuery); at the very end of the cases before return 1; and delete it from each case individually.
Most likely you wont use it, but I can always suggest.
Also small tip, can you tell what is common in each case state in vUpdate?
Its mysql_query(SQL, gQuery);
You can save up to 23 script lines, by putting mysql_query(SQL, gQuery); at the very end of the cases before return 1; and delete it from each case individually.
pawn Код:
mysql_query(SQL, gQuery);
return 1;
}