#1

Hello. I have a drift point system which gives me score/cash when I drift. The problem is when players use helicopter and goes kind of sideways, the earn tons of points! How can I limit the counter to just a few vehicles?
Example: Elegy, picador, bullet etc, good drift cars..
Reply
#2

Show your drifting script. Check there if vehicle model is on whitelist/isn't on blacklist of vehicles and then award points for drifts
Reply
#3

What you can do is:
pawn Код:
new model = GetVehicleModel(vehicleid); // just easier

//Okay so, now when you're drifting, you will put this, this will exclude the maverick

if(model != 487)
{
// the drift thing here, this will only give score and cash if the vehicle is different than ID 487, you will surely add others too, put them all near this
}
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)