How to detect anti cheat triggers in this map?

General talk about editing, cheating, and deprotecting maps.

Moderator: Cheaters

teino
Junior Member
Posts: 36
Joined: July 17th, 2007, 7:55 pm
Title: 3xp3r7 h4x0|2 :-)

How to detect anti cheat triggers in this map?

Post by teino »

I looked inside the map and cant find any text that knows that you cheated.
i found some lines that knows that you cheated and gives other players resources.

Code: Select all

function DebugGimmeEnum takes nothing returns nothing
local player thePlayer=GetEnumPlayer()
call DisplayTextToPlayer(thePlayer,0,0,"Player "+I2S(GetPlayerId(GetTriggerPlayer())+1)+" cheated: Give 5000 gold and 5000 lumber to all players")
call SetPlayerState(thePlayer,PLAYER_STATE_RESOURCE_GOLD,GetPlayerState(thePlayer,PLAYER_STATE_RESOURCE_GOLD)+5000)
call SetPlayerState(thePlayer,PLAYER_STATE_RESOURCE_LUMBER,GetPlayerState(thePlayer,PLAYER_STATE_RESOURCE_LUMBER)+5000)
endfunction
Anyone knows how to disable this?
I can remove most anti cheat myself but i cant find anything leading to it so it knows your cheating.
Can anyone help me out?

~Teino
You do not have the required permissions to view the files attached to this post.
User avatar
Bartimaeus
Tyrannical Drama Queen
Posts: 4443
Joined: November 19th, 2007, 5:05 am
Been thanked: 2 times

Re: How to detect anti cheat triggers in this map?

Post by Bartimaeus »

Why do you need to know how it detects you're cheating? It's usually a lot easier to just delete all the anticheat then actually trying to find out what powers it.
initialD
Some Honorary Title
Posts: 1713
Joined: June 8th, 2007, 5:08 am
Title: Angry Bird

Re: How to detect anti cheat triggers in this map?

Post by initialD »

To disable it. Just delete everything inside that function. As following:

Code: Select all

function DebugGimmeEnum takes nothing returns nothing
endfunction
It's important that the function remains. So u wont get a syntax error in the game.
wait, is that what you want?
lol

wait, that is not an anti-cheats system. That is a cheats triggers. Obviously the creator himself make a cheat functions for himself.
lol

Just make a request on th request section if you still have problems.
User avatar
Senethior459
Forum Staff
Posts: 2618
Joined: June 2nd, 2007, 6:53 pm
Title: I Just Lost the Game

Re: How to detect anti cheat triggers in this map?

Post by Senethior459 »

I was thinking that too... Because it said it gives 5000 gold and lumber to each player because you tried to cheat... But looking closer, it actually only gives the gold and lumber to the person who activated that trigger, and it only displays that message to him, too. Interesting. Find out what triggers it, and you can get money without actually adding cheats into the game!
My Warcraft III Tool Collection
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
initialD
Some Honorary Title
Posts: 1713
Joined: June 8th, 2007, 5:08 am
Title: Angry Bird

Re: How to detect anti cheat triggers in this map?

Post by initialD »

I didn't see the whole trigger. But I guess it's global cheat triggers.
Becasue it said "cheated, give gold to all players"
And it also "GetEnumPlayer", which should give bonus gold to all players.
so w/e
I believe there are no anti cheats. Wait till he clearify it to us. May be he already got what he wants?