SA-MP Forums Archive
How To - Stop Entering Vehicle While Surfing Bug - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: How To - Stop Entering Vehicle While Surfing Bug (/showthread.php?tid=111959)



How To - Stop Entering Vehicle While Surfing Bug - StrickenKid - 05.12.2009

All of you have probably noticed that 0.3 has a bug where you can enter a vehicle while surfing on it by simply pressing F, Enter, or G.

So I decided to make something to stop it!

The fix is very easy and simple.
The following code checks if the player is entering the vehicle they are surfing on, if so it will clear their animation of entering the vehicle stopping this bug.

Code:
pawn Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
    if (GetPlayerSurfingVehicleID(playerid) == vehicleid)
    {
        ClearAnimations(playerid);
    }
    return 1;
}
Feel free to add it into your gamemodes and happy scripting.


Re: How To - Stop Entering Vehicle While Surfing Bug - StrickenKid - 05.12.2009

*Bump*

was on 4th page and no comments D:


Re: How To - Stop Entering Vehicle While Surfing Bug - Djiango - 05.12.2009

Didn't know of this bug, until now.
So thanks for sharing a fix.


Re: How To - Stop Entering Vehicle While Surfing Bug - MPKaboose - 05.12.2009

I never actually noticed this tough but I will use it, nice idea


Re: How To - Stop Entering Vehicle While Surfing Bug - Grim_ - 05.12.2009

Quote:
Originally Posted by Kaboose
I never actually noticed this tough but I will use it, nice idea
Me either. Anyways, nice job ethan.


Re: How To - Stop Entering Vehicle While Surfing Bug - AKA_Cross - 05.12.2009

Ye, i justed it to get into Locked Cars or Cars that Would Remove you from it :>


Re: How To - Stop Entering Vehicle While Surfing Bug - miokie - 05.12.2009

Nice one. This bug annoyed me quite abit. Thank You.


Re: How To - Stop Entering Vehicle While Surfing Bug - Zamaroht - 05.12.2009

Interesting, nice for this.


Re: How To - Stop Entering Vehicle While Surfing Bug - DJDhan - 06.12.2009

What do you mean surfing a vehicle?



Re: How To - Stop Entering Vehicle While Surfing Bug - Zamaroht - 06.12.2009

When you are standing over it.