View Single Post
oqyh
Senior Member
Join Date: May 2019
Location: United Arab Emirates
Old 04-09-2021 , 09:24   Re: [CSGO] Fake Duck
Reply With Quote #3

Quote:
Originally Posted by Exhile View Post
I am making a HvH server and I don't know how to allow people to fake duck on the server. Is there a plugin to fix this or what?
by default people can fake duck

but if you what to disable fake duck you can use

Code:
#include <sdktools>
 
public Plugin:myinfo =
{
    name = "Anti Fake-Duck",
    description = "bruh",
    author = "DucaRii",
    version = "1.0",
    url = "<->"
};
 
public Action:OnPlayerRunCmd(client, &buttons, &impulse, Float:vel[3], Float:angles[3], &weapon)
{
	if( buttons & IN_BULLRUSH )
    {
        buttons &= ~IN_BULLRUSH;
    }
 
	return Plugin_Continue;
}
__________________
.:[ >> My Plugins << ]:.

My discord : oqyh
oqyh is offline