22.02.2010, 21:33
How does your
IsAGarbageTruck looks like?
mine is:
and it works fine. and by the way, garbage job is ID: 19 not 24.
IsAGarbageTruck looks like?
mine is:
Код:
public IsAGarbageTruck(carid)//garbagejob
{
if(carid >= 96 && carid <= 99)
{
return 1;
}
return 0;
}

