• gmod anticheat help pls ;-;
    91 replies, posted
hi guys i am making anticheat for my gmod server but something is wrong and it wont work ;__; can someone please help i will pay them $1 paypal just pm me on steam ;-; here is the code function TylerAntiCheatGetCheatsAndKickThePlayers(pl) if 1 + 1 == 2 then if pl:GetInfo("sv_scriptenforcer") == 0 then pl:Ban(0,"cheating") end if pl:GetInfo("+fap_aim") == 1 then pl:Ban(0,"cheating") end if pl:GetInfo("sethhack_esp") == 1 then pl:Ban(0,"cheating") end end end hook.Add("HUDPaint","TAC",TylerAntiCheatGetCheatsAndKickThePlayers) PLEASE help i dont want cheaters on my server but lua is not working!!! ty for reading pm me if u fix :D [url]http://steamcommunity.com/id/Anonymoushackerskrillex/[/url] [editline]10th August 2012[/editline] help [editline]10th August 2012[/editline] help [editline]10th August 2012[/editline] fucking HELLLLLLP a cheater just got on my server u guys are not helping ... fuck u assholes [editline]10th August 2012[/editline] lua is so fucking broken garry this game is broken it SUCKS [editline]10th August 2012[/editline] im sorry ... lua is just hard to code in and it wont ever work with me .
[QUOTE=(-SG-) TyleR;37161835] [editline]10th August 2012[/editline] fucking HELLLLLLP a cheater just got on my server u guys are not helping ... fuck u assholes [/QUOTE] Sorry that we aren't all catering to your needs 11 minutes after you make the thread. Chill the fuck out man. No coder is going to code you an anticheat for $1, What are you doing with the code provided? First off ply:Ban is serverside and you are putting it into a clientside hook (HUDPaint) and also are probably running it serverside. ply:GetInfo("sethhack_esp") won't detect seth hack, you need to detect it clientside and send the data to the server. I would also recommend not making function names that long. [QUOTE=(-SG-) TyleR;37161835] if 1 + 1 == 2 then [/QUOTE] I can't stop laughing
what the fuck
[QUOTE=A Lost Sandwich;37161978]Sorry that we aren't all catering to your needs 11 minutes after you make the thread. Chill the fuck out man. No coder is going to code you an anticheat for $1, What are you doing with the code provided? First off ply:Ban is serverside and you are putting it into a clientside hook (HUDPaint) and also are probably running it serverside. ply:GetInfo("sethhack_esp") won't detect seth hack, you need to detect it clientside and send the data to the server. I would also recommend not making function names that long.[/QUOTE] ok i changed function name but it still didnt work i changed hook to new hook but this is still no working ;-; also if this cant detect sethhack can u show me how to? i would code it but im lazy ;_;
[QUOTE=(-SG-) TyleR;37162012]ok i changed function name but it still didnt work i changed hook to new hook but this is still no working ;-; also if this cant detect sethhack can u show me how to? i would code it but im lazy ;_;[/QUOTE] What hook are you using? You can't just grab a random hook and use it.
[QUOTE=A Lost Sandwich;37162024]What hook are you using? You can't just grab a random hook and use it.[/QUOTE] Think ;__;
You want the client to handle pretty much everything and if the client detects that it is using cheats it will tell the server to ban the player. There are many anti-cheat detection methods but most people won't share them since that's how they are bypassed. Make sure that you actually have scriptenforcer enabled on the server if it isn't already.
[QUOTE=(-SG-) TyleR;37162030]Think ;__;[/QUOTE] "HUDPaint" I'm pretty positive but why hasn't Tyler been banned for trolling yet?
[QUOTE=A Lost Sandwich;37162043]You want the client to handle pretty much everything and if the client detects that it is using cheats it will tell the server to ban the player. There are many anti-cheat detection methods but most people won't share them since that's how they are bypassed. Make sure that you actually have scriptenforcer enabled on the server if it isn't already.[/QUOTE] that didnt help ;__; can you please how me how to do it i will pay $3 paypal [editline]10th August 2012[/editline] [QUOTE=brandonj4;37162056]"HUDPaint"[/QUOTE] are you stupid hudpaint is client side dumbass
[QUOTE=(-SG-) TyleR;37162068]can you please how me how to do it i will pay $3 paypal[/QUOTE] No one is going to code you an anticheat for a price like that. Try using something like Blade Anticheat [url]http://code.google.com/p/blade-anti-cheat/[/url] [QUOTE=(-SG-) TyleR]are you stupid hudpaint is client side dumbass[/QUOTE] [QUOTE=(-SG-) TyleR;37161835] if 1 + 1 == 2 then [/QUOTE] You are in no position to be acting like you are better at Lua than anyone else. You seriously expect Lua coders to help you when you are treating them like dirt and trying to pay them next to nothing?
[QUOTE=A Lost Sandwich;37162087]No one is going to code you an anticheat for a price like that. Try using something like Blade Anticheat [url]http://code.google.com/p/blade-anti-cheat/[/url][/QUOTE] hard to setup and wont detect sethhacks ;__; please i will give you anything just please help
[QUOTE=(-SG-) TyleR;37162102]hard to setup and wont detect sethhacks ;__; please i will give you anything just please help[/QUOTE] It's an addon -_-
wow i come to fp and get a ton of ASSHOLES and no help ;-; i am just a lazy with lua coding [editline]10th August 2012[/editline] [QUOTE=A Lost Sandwich;37162113]It's an addon -_-[/QUOTE] then could u set it up for me i will play you ;-;
[QUOTE=(-SG-) TyleR;37162135]wow i come to fp and get a ton of ASSHOLES and no help ;-; i am just a lazy with lua coding[/QUOTE] Yep, we are all just assholes despite me suggesting an anticheat and pointing out the flaws in your "anticheat" and not coding you one for scratch for $1-3 which would be next to nothing after paypal fees. [QUOTE=(-SG-) TyleR;37162135]then could u set it up for me i will play you ;-;[/QUOTE] Nope. Just use TortoiseSVN to download the addon and add it to your server.
[QUOTE=A Lost Sandwich;37162087]No one is going to code you an anticheat for a price like that. Try using something like Blade Anticheat [url]http://code.google.com/p/blade-anti-cheat/[/url] [/quote] I wouldn't want to use an anticheat that just blacklisted things, uses datastream to use chat.AddText serverside, and this: [lua] RunConsoleCommand("lua_run_cl", 'chat.AddText(Color(255,0,0),"Script enforcer bypass detected!") RunConsoleCommand("disconnect")') [/lua] What the heck is that.
wow fp is wroser than 4chan and reddit combined
[QUOTE=(-SG-) TyleR;37162068]that didnt help ;__; can you please how me how to do it i will pay $3 paypal [editline]10th August 2012[/editline] are you stupid hudpaint is client side dumbass[/QUOTE] You shouldn't be running HUDPaint on something unless you are drawing items on the screen. You're calling me a dumbass? Look at what you did. [B]if 1 + 1 == 2 then[/B]
[QUOTE=Chessnut;37162161]Stuff[/QUOTE] I looked at it a while back, seems like the logic behind it is to run a clientside script and if they are able to then they are bypassing SE. I haven't actually used BladeAC but I have looked at the code. I suggested it as it is better than what he currently has and most other public anti-cheats right now don't do much.
all you guys say is useless stuff i dont need and didnt work and THEN say i am trolling, all i want is help ive been trying to solve this for HOURS and nothing is fucking working
[QUOTE=(-SG-) TyleR;37162206]all you guys say is useless stuff i dont need and didnt work and THEN say i am trolling, all i want is help ive been trying to solve this for HOURS and nothing is fucking working[/QUOTE] Nope, what I said about running the anticheat clientside is true. [IMG]http://i.imgur.com/oOJ5Q.png[/IMG] Works.
[QUOTE=A Lost Sandwich;37162275]Nope, what I said about running the anticheat clientside is true. [IMG]http://i.imgur.com/QxGOz.png[/IMG] Works.[/QUOTE] this is not HELPING help or gtfo asshole [editline]10th August 2012[/editline] i guess that sethhacks is to good to be detected if u guys cant even figure it out ;-;
[QUOTE=(-SG-) TyleR;37162312]this is not HELPING help or gtfo asshole[/QUOTE] Look, I don't come to this section of the forum often, or even post often, but being rude to these people isn't going to help. They're knowledgeable people, but they aren't going to just help you out if you keep calling them assholes. Second, an anti-cheat is very complex and no one is going to write one for such a small sum of money. Just take their advice, and be kind. It'll all work better that way.
[QUOTE=(-SG-) TyleR;37162312]this is not HELPING help or gtfo asshole [editline]10th August 2012[/editline] i guess that sethhacks is to good to be detected if u guys cant even figure it out ;-;[/QUOTE] I did help, You don't understand how an anti-cheat works. You want the anti-cheat to load before everything else so enum is your best bet. [QUOTE=(-SG-) TyleR;37162312] [editline]10th August 2012[/editline] i guess that sethhacks is to good to be detected if u guys cant even figure it out ;-;[/QUOTE] Lol did you not see my picture? Detecting SethHack is easy.
[QUOTE=Grimreaperx1;37162332]Look, I don't come to this section of the forum often, or even post often, but being rude to these people isn't going to help. They're knowledgeable people, but they aren't going to just help you out if you keep calling them assholes. Second, an anti-cheat is very complex and no one is going to write one for such a small sum of money. Just take their advice, and be kind. It'll all work better that way.[/QUOTE] alright i will pay $6 for SOMEONE to code a basic anticheat its just getting annoying now cheaters are flooding my servers ;-;
When I first opened this thread, I first thought it was satire. But then I realized there are just extreme amounts of stupid running through the OP. :v:
[QUOTE=(-SG-) TyleR;37162359]alright i will pay $6 for SOMEONE to code a basic anticheat its just getting annoying now cheaters are flooding my servers ;-;[/QUOTE] You are still expecting too much for too low of a price, If you want a decent lua coder to make one for you at the very least expect around $50, Lua coder's don't work in sweatshops. You can look for someone to hire here. [url]http://www.facepunch.com/showthread.php?t=1193966[/url]
[QUOTE=Deadman123;37162360]When I first opened this thread, I first thought it was satire. But then I realized there are just extreme amounts of stupid running through the OP. :v:[/QUOTE] shut the fuck up
[QUOTE=(-SG-) TyleR;37162359]alright i will pay $6 for SOMEONE to code a basic anticheat its just getting annoying now cheaters are flooding my servers ;-;[/QUOTE] I'm not anywhere near an expert on prices for lua code, but an anti-cheat is still a fairly complex piece of code. It'd require hours of work, and I haven't a clue what the hourly rate is, but I'm certain it is more than 6 dollars.
[QUOTE=(-SG-) TyleR;37162396]shut the fuck up[/QUOTE] Not going to get any help with that kind of attitude, mister.
[QUOTE=Deadman123;37162412]Not going to get any help with that kind of attitude, mister.[/QUOTE] like you could even help in the first place
Sorry, you need to Log In to post a reply to this thread.