What that mean?
#1

public FBICARS(carid)
{
if((carid >= 39) && (carid <= 43) || (carid >= 179 && carid <= 183))
{
return 1;
}
return 0;
}

HelP?
Reply
#2

pawn Код:
stock FBICARS(carid)
{
    switch(carid)
    {
        case 39..43, 179..183: return 1;
    }
    return 0;
}
Reply
#3

The code is ok, but what that mean the numbers all?
Reply
#4

If the car id is between 39 and 43, or between 179 and 183 it will return 1.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)