Hello,
I have a problem in a public function:
when testing this, it works, but after a while of starting server ( 3hours or more ) it returns 0...
I have a problem in a public function:
PHP Code:
forward VIPAble(carid);
public VIPAble(carid)
{
if(GetVehicleModel(carid) == 411 || GetVehicleModel(carid) == 560 || GetVehicleModel(carid) == 541 || GetVehicleModel(carid) == 451)
{
return 1;
}
return 0;
}