Need help?Blocking RunConsoleCommand say - MPGH - MultiPlayer Game Hacking & Cheats
Blocking RunConsoleCommand say
Posts 1–9 of 9 · Page 1 of 1
Blocking RunConsoleCommand say
Can someone create a script to block RunConsoleCommand say? I still want to be able to receive all the other commands with out RCC running "Say" on me.
Help would be appreciated, thanks
i dont know of a script but im sure someone does. im guessing youre using a lua script like traffic hack or something that makes you say things? if that is true you can just remove those lines in the script and its fixed. youll need notepad ++ to edit lua files tho.
You could always do alias say "echo BLOCKED" but then you couldn't say anything. I'm currently trying to do this easier.
Originally Posted by ThunderouZZ
You could always do alias say "echo BLOCKED" but then you couldn't say anything. I'm currently trying to do this easier.
How do I disable the alias command?
Originally Posted by LikitySpit
How do I disable the alias command?
alias alias
Originally Posted by LikitySpit
How do I disable the alias command?
You can't, you can only remove it by restarting gmod.
Originally Posted by ThunderouZZ
You can't, you can only remove it by restarting gmod.
alias alias
try this maybe
Code:
****** = RunConsoleCommand
function RunConsoleCommand(tramp)
if string.sub(tramp, 1, 3) == "say" then
return "YOU FUCKER I H8 U"
else
return ******(tramp)
end
end