22.11.2014, 19:31
You can do something like this, maybe?
Something like this? Or, if it's purely MySQL then see event scheduling,
https://sampforum.blast.hk/showthread.php?pid=3258877#pid3258877
pawn Код:
public OnVehicleCreation(vehicleid)
{
new day;
Born[vehicleid] = getdate(day, day, day);
return true;
}
stock GetCarAge(vehicleid)
{
new tmpage, day;
tmpage = Born[vehicleid] - getdate(day, day, day);
return tmpage;
}
https://sampforum.blast.hk/showthread.php?pid=3258877#pid3258877