07.11.2014, 20:14
then it's Raven's Roleplay Script mmmmmmmm
then how you are waiting the server to understand this
??
add this to your script
for Example , vehicles id i'll allow them to load with Truck are 1 2 and 3 i'll do like this
this will work 100% , if there anything eles tell it
then how you are waiting the server to understand this
PHP код:
if(IsATruck(tmpcar))
?? add this to your script
PHP код:
public IsATruck(carid)
{
new m = GetVehicleModel(carid);
if(m == (vehicleid)|| m == (vehicleid)|| m == (vehicleid)|| m == (vehicleid))
{
return 1;
}
return 0;
}
PHP код:
public IsATruck(carid)
{
new m = GetVehicleModel(carid);
if(m == 1|| m == 2|| m == 3)
{
return 1;
}
return 0;
}

