all your questions answered?
if not let me know which question u still need an anwer.
I am not a writting a tutorial guy, don't click me surely I will get u answer in short message I guess.
Few questions
Moderator: Cheaters
-
- Some Honorary Title
- Posts: 1713
- Joined: June 8th, 2007, 5:08 am
- Title: Angry Bird
-
- Forum Staff
- Posts: 1400
- Joined: March 17th, 2008, 12:07 am
Re: Few questions
That still needs answered.risker wrote:6. What do all the listfile things do?
Like..
Theres war3map.###
Etc, Anyone mind giving me a quick rundown what each file is used for / Contains

Made by the late ILikeHacking
My quote from SKillER
Spoiler:
-
- Forum Staff
- Posts: 351
- Joined: June 8th, 2008, 3:05 am
- Location: Australia
Re: Few questions
Yea 
Just an example..
Or something to look for Basically
EDIT:
JJ told me to change the -xp command to change the variable on the leaderboard instead of the hero xp.. but idk how to find the variable of the leaderboard ..
Cause i have no clue what a leaderboard code would look like
EDIT2: Also i'd like to know how to change the variable from hero xp to leaderboard xD
EDIT3:
Like warlocks for example..

I don't really need a full on tut for anything..initialD wrote:all your questions answered?
if not let me know which question u still need an anwer.
I am not a writting a tutorial guy, don't click me surely I will get u answer in short message I guess.
Just an example..
Or something to look for Basically
EDIT:
I need an example for that one..risker wrote:3. Editing a leaderboard/XP
Like.. XP/Levels or whateva in a game
I wouldn't mind a little tut on that one
JJ told me to change the -xp command to change the variable on the leaderboard instead of the hero xp.. but idk how to find the variable of the leaderboard ..
Cause i have no clue what a leaderboard code would look like

EDIT2: Also i'd like to know how to change the variable from hero xp to leaderboard xD
EDIT3:
Theres more than just the one that checks the commands..risker wrote:2. Anti Cheat Systems
I know there are many.. but mind giving me examples of the common used ones
Also some of the best ones?
And of cause how to get rid of them
Like warlocks for example..
JJ wrote:It has H2I protection map archive is corrupted and has CreateQuest Protection...
Just look look around you should be able to find somethings...
-
- Forum Staff
- Posts: 2618
- Joined: June 2nd, 2007, 6:53 pm
- Title: I Just Lost the Game
Re: Few questions
On 6: Listfiles contain the names of all the files in the map. If you don't know the names of them, you can't do much with them, and you tend to get all those File000001.xxx files.
The war3map.XXX files:
war3map.w3a - Abilities
war3map.w3h - Buffs/Effects
war3map.w3q - Upgrades
war3map.w3t - Items
war3map.w3u - Units
war3map.w3b - Destructibles
war3map.w3d - Doodads
war3map.wts - Strings
war3map.j - Jass Triggers
The war3map.XXX files:
war3map.w3a - Abilities
war3map.w3h - Buffs/Effects
war3map.w3q - Upgrades
war3map.w3t - Items
war3map.w3u - Units
war3map.w3b - Destructibles
war3map.w3d - Doodads
war3map.wts - Strings
war3map.j - Jass Triggers
My Warcraft III Tool Collection
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
-
- Forum Staff
- Posts: 351
- Joined: June 8th, 2008, 3:05 am
- Location: Australia
-
- Some Honorary Title
- Posts: 1713
- Joined: June 8th, 2007, 5:08 am
- Title: Angry Bird
Re: Few questions
The best anti cheats I have seen so far is from the darkinvasion.
I need about 1hour to remove it, it's too annoying it checked a lot of things. And it also have triggers that check if the anticheats are running well.
Whenever an anticheats trigger are deleted, you got to delete those triggers designed for detecting the anticheats system too.
Kinda annoying....
May be someone here just extra the whole Jass code from it and paste it here?
I am not feeling like doing it since... I am now busing with my own cheat packs.
I need about 1hour to remove it, it's too annoying it checked a lot of things. And it also have triggers that check if the anticheats are running well.
Whenever an anticheats trigger are deleted, you got to delete those triggers designed for detecting the anticheats system too.
Kinda annoying....
May be someone here just extra the whole Jass code from it and paste it here?
I am not feeling like doing it since... I am now busing with my own cheat packs.
-
- Forum Staff
- Posts: 2618
- Joined: June 2nd, 2007, 6:53 pm
- Title: I Just Lost the Game
Re: Few questions
Don't delete the anticheat triggers!! It just creates more trouble! Just replace everything inside of it with "call DoNothing()". It's one of the native functions of jass, I guess it's defined in the blizzard.j or something. It does exactly what it says, so you can replace everything that the trigger does, without deleting the trigger itself.initialD wrote:Whenever an anticheats trigger are deleted, you got to delete those triggers designed for detecting the anticheats system too.
Kinda annoying....
My Warcraft III Tool Collection
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
-
- Some Honorary Title
- Posts: 1713
- Joined: June 8th, 2007, 5:08 am
- Title: Angry Bird
Re: Few questions
Yeah it is more complicated if one wnats to "delete" the anti cheats, instead of just replacing it with native DoNothing().
When I am lazy I will just replace the DoNothing thingies. When I felt like not that lazy I will actually clean up the whole anti cheats. And yes one got to have the basic knowledge of JASS to do so or else it will spoil other related triggers.
Anyway, here is what native DoNothing does, as following:
it does nothing....bingo....
lol
kidding..
When I am lazy I will just replace the DoNothing thingies. When I felt like not that lazy I will actually clean up the whole anti cheats. And yes one got to have the basic knowledge of JASS to do so or else it will spoil other related triggers.
Anyway, here is what native DoNothing does, as following:
Code: Select all
function DoNothing takes nothing returns nothing
endfunction
lol
kidding..
-
- The Flying Cow!
- Posts: 2196
- Joined: November 2nd, 2007, 10:34 pm
- Location: Melbourne
Re: Few questions
Don't use DoNothing().... It's bad.
Visit Ozzapoo.net, my blog and the home of AutoCP and Cheatpack Detector!
AutoCP3 now available for free!
AutoCP3 now available for free!
-
- Forum Staff
- Posts: 351
- Joined: June 8th, 2008, 3:05 am
- Location: Australia
Re: Few questions
Well we got everything but the leaderboard variables figured out 
EDIT:

EDIT:
Why not?Ozzapoo wrote:Don't use DoNothing().... It's bad.