csgo-retakes
csgo-retakes copied to clipboard
Remove csgo hud alerts?
Is there we can remove the CSGO hud alerts like: bomb has been planted and has 40 seconds to detonation? Its getting in the way of my code that says Retake B/A using PrintHintTextToAll
So is there a way to remove those annoying alerts server wise? any code/plugins I can use
You can block an event by returning Plugin_Handled;
https://wiki.alliedmods.net/Events_(SourceMod_Scripting)#Blocking_Events
How would I go about blocking a usermessage from happening?
Try these:
gameinstructor_enable "0" //Removes in-game instructions
cl_showhelp "0" //Removes on-screen help
cl_autohelp "0" //Removes automatic help
cl_showhelp "0"
should be the one you need.