Page 1 of 5 123 ... LastLast
Results 1 to 15 of 73
  1. #1
    JamesRo's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    1,872
    Reputation
    182
    Thanks
    17,852
    My Mood
    Happy

    AQW cheating 101[History, technical explanations, source code examples]

    Hello there guys, today I'm here to discuss some interesting points and show you how the hacks are usually made. So, shall we start?
    Chapter I - The Beggining

    1.0 - How this cheating thing started? And when?
    Actually, the root of AQW hacking can be trace the the alpha days(circa 2008) of the game. While Artix Entartainment was still testing a lot of functions, there were many loopholes on the engine that made some of the following things possible:
    >Wearing member items/entering on member maps without being a member;
    >Killing monsters instantly;
    >"Generating" Gold and XP out of thin air.
    While these exploits were easy to do, they involved sending packets to the server by using the "WPE Pro" utility, and this proved to be kinda hard for most non-savvy computer users. It wasn't until the advent of the first aqw trainers that it all really started.

    1.1 - the first trainers
    The first "pure" AQW trainer was made by LolSalad and it was simply a game loader and a simple packet sender/grabber. As it was open-source, various different coders improved upon the original idea and soon there were various trainers with varying degrees of functionality. Some of the most known "packet trainers" as they are known by some are AQWacker(by Archmage2009), Hell Quest(by Isair) and AQWolf(made by DatapawWolf - more on this guy later!)
    Unique(at the time) to the packet trainers was the hability to load and save packet sequences that became known as "autoers" - they are basically an ancient version of today's bots. One could do almost anything with it - varying to simple map bypasses, to automatically buying items and attack bots, and also on some newfound exploits - like the easter gold autoer - wich could transform any player into a millionaire in a few hours.
    But with evolution comes some bugfixes on the way... In Early-mid 2010, AE announced they were implementing something called "the ban hammer", wich could detect if players were using autoers and ban them. This was enough to start a shitstorm among cheaters. While we never gotany confirmations if the ban hammer really worked, most people ceased using autoers out of fear. Being aware of this, AE just sat on their lazy asses instead trying to fix the game engine.[/INDENT]
    With the packet trainers almost completely out of the game, Flash-based trainers rose to the top.

    1.2 - The Flash trainers
    The first Flash trainer was AQWSerious made by CrisNMP, and it contained a set of featuresthat no other trainer had at the time, like loading shops and quests without using packets, loading custom equipment into your character, changing its' walk speed ect.,mainly what became known some time later as 'client sided hacks'.
    Shortly after the release of AQWSerious, Beyond Awesomeness released 'The New Trainer' - and ambitious project that succesfully fused the client sided hacks of AQWSerious with the usefulness of packet trainers. The apogee of Flash-based trainers was on mid-late 2010, with trainers such as Xelworlds(made by Xeleron), AQWNow(made by Xyo - the owner of EliteQuestWorlds), Cross Hell(made by Isair - cretor of Hellquest), and AQWUnlimited, an effort of varios well-known programmers. But in early 2011, something else took the AQW cheating scene by surprise...

    1.3 - Flash-based bots(AKA 'Datapawwolf Era')
    In 2011, Xyo released a new app called 'AQW Evolution', wich was probably the first AQW bot. It was very simple, included only a auto-attack bot, but it was enough to kickstart what is now known as 'the great bot rush' between creators. Many attempted, and most failed. But one particular guy - that went by the screen name 'Datapawwolf' - achieved huge sucess. Being already known in the scene for releaseing AQWolf some years earlier, On a rainy saturday morning Datapaw posted BotQuestWorlds 0.1 on the internet. The first version was somewhat buggy and only contained 2 bots(wich I don't remember - though I'm almost sure they were Doomwood rep and Mana Energy for Nulgath).[/INDENT]
    BQW skyrocketed the ease and user friendliness that the old cheats often lacked to insane levels and this led to a boom in cheating popularity once again and resulted in a new wave of trainers - one of them called 'Dark Mystic'.
    Dark Mystic included the common Flash-trainer features, but had a unique twist: the utility called 'Bot Manager', wich allowed your average joe to make his own bots with near 100% level of cutomization and a great performance. But sadly, almost eveything comes to and end someday. In March 2012, Datapawwolf announced he was going to retire from the AQW scene for good, and released the unfinished source of BQW 1.9. But a few days later, his forum mysteriously disappeared. It was later discovered that AE had threatened to sue him. Mystical carried on for a few more months, but he soon announced that all of his coding activities would be on hold for an undefined period of time - he also released the Dark Mystic 3.3 source wich led to various cheap imitators anhd wannabes slapping their name on it and re-releasing it.

    Yeah, that pretty much summed up all of the AQW cheating history - but enough with the lecture, let's see some of the technical stuff now...

    Chapter II- how does it work?
    Well, it varies greatly - let's start with Packet trainers:


    2.0 - Packet trainers
    These are usually coded in Delphi(but C# is also common), and they use the basic priniciples of something called 'API Hooking'. It's done by using libraries built-in to the system(in this case, it uses the Winsock lib to send packets), thus resulting in limited control over what you are trying to do.

    2.1 - Flash trainers and bots
    These are coded directly in Flash(the same as AQW) , and they have the unique hability to acess any function the game has. You can basically re-make the game, but at the cost of it being all client-sided.

    2.2 - Source exmples - Flash
    Well, I'll include some examples of my own, and some by other coders - with credits and explanation.

    2.2.0 - "Speed Hack"
    Not really a speed hack per se, but it does change the players walk speed.
    Code:
    function speedHack(e:Event)
       {
             Game.world.WALKSPEED = number;//int can be any value you want. The higher, the faster you go. Fairly straightforward, isn't it?
       }
    2.2.1 - Skill modifiers
    I'll include a different on in each line.
    Code:
         function skillMod(e:Event)
         {
               Game.world.actions.active[number].cd = number;//[number] goes from 0(auto atack) to 5(potions), in this case, cd is the cooldown time.
               Game.world.actions.active[number].range = number;// pretty easy, the higher the value, the higher the skill range will be.
               Game.world.actions.active[number].mp = number;//yeah, you can modify the mp value too! 
         }
    Of course there are more, but these are the useful ones.


    2.2.2 - Moving to different areas of the map:
    Title says it all.
    Code:
            function goTo(e:Event)
             {
                  Game.world.moveToCell("Cell", "Pad");//this is the common way, it's great but gives the impression of "telporting".
                  Game.world.myAvatar.pMC.walkTo(x, y);// x is the horizontal position, y is the vertical one. This one must be used
                  //if you want to disguise your bot as human.
             }
    That's all for now, but I will update this in the futurel. Stay tuned!

  2. The Following 22 Users Say Thank You to JamesRo For This Useful Post:

    AboodElshreef (01-19-2013),bandar7_ (05-14-2016),Bro-ba Fett (01-22-2013),cefiroth (06-03-2013),Eternity (08-10-2014),Jiji123 (12-29-2017),Lolic (02-01-2013),luis001 (02-24-2019),matacusa (04-10-2018),mitch1490 (06-14-2013),Oliboli8769 (05-03-2016),pidot101 (02-10-2013),Rotting (09-24-2017),Shinigami_Exist (03-05-2013),shiubro99:D (08-09-2013),thebigbang20 (01-11-2013),TheFrikinAsian (07-08-2013),UltraHacks85 (03-31-2013),Volt (01-10-2013),Yuudoku (01-10-2013),zeh_lp (01-10-2013),[CA]TheSeller (01-16-2013)

  3. #2
    Yuudoku's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    827
    Reputation
    101
    Thanks
    491
    My Mood
    Relaxed
    Useful information.

    I remembered when I first used Lolsalad's trainer and bought the Beta Zerker. XD
    very interesting history... Want to read more.. as the time progresses in the AQW cheating history.

  4. #3
    SoFlyGuy's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    Canada
    Posts
    100
    Reputation
    10
    Thanks
    4
    My Mood
    Cool
    I remember using all of these trainers. I still remember when the ban hammer came out, I quit AQW for a while because of it (no hacks, no play).



    [IMG]https://i1120.photobucke*****m/albums/l499/13oy13radley/the-hacker-anonymous-themed-word-art-cool-timeline-facebook-covers.jpg[/IMG]

  5. #4
    zeh_lp's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    67
    Reputation
    10
    Thanks
    3
    Oh, the Easter gold autoer...

  6. #5
    jecxDvirux's Avatar
    Join Date
    Nov 2012
    Gender
    female
    Location
    Inside you PC System
    Posts
    207
    Reputation
    10
    Thanks
    5
    My Mood
    Bored
    Quote Originally Posted by zeh_lp View Post
    Oh, the Easter gold autoer...
    The gold ticket you mean? Ahaha

  7. #6
    justz45's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    Philippines
    Posts
    379
    Reputation
    10
    Thanks
    133
    My Mood
    Amused
    I remember i use Botquestworlds and Dark Mystic to cheat and hack
    And
    I remember i got banned 24 hours because im using Botquestworlds

  8. #7
    akang99's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    cat etc/passwd
    Posts
    1,112
    Reputation
    10
    Thanks
    1,917
    My Mood
    Bored
    nice info james . its cool
    You have to learn the rules of the game. And then you have to play better than anyone else
    Albert Einstein
    ================================================== =================

    My Bots :

    1. Angry Zombie Skull Bot (AQWorlds War Z Bot)
    2. Dage's Endurance Test Quest Bot and Dage's Black Box Quest Bot
    3. Fastest Mana Golem Bot (outdated)
    4. Swordhaven Reputation Bot
    5. Black Voucher Bot
    6. Tinsel's Gift Quest Bot
    7. Mana Golem Bot [updated]

  9. #8
    JamesRo's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    1,872
    Reputation
    182
    Thanks
    17,852
    My Mood
    Happy
    Official bump. Also, @Nico - may I request sticky?

  10. #9
    Nico's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Germany :D
    Posts
    15,918
    Reputation
    1121
    Thanks
    8,617
    Quote Originally Posted by JamesRo View Post
    Official bump. Also, @Nico - may I request sticky?
    I think that's a valid point. And no more bumps.

  11. #10
    JamesRo's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    1,872
    Reputation
    182
    Thanks
    17,852
    My Mood
    Happy
    Niko, thank you very much!

  12. #11
    crais's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Slatina
    Posts
    193
    Reputation
    10
    Thanks
    51
    My Mood
    Inspired

  13. #12
    [CA]TheSeller's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Gucci Store
    Posts
    397
    Reputation
    10
    Thanks
    16
    My Mood
    Brooding
    Nice info. Good read.
    I can't wait to read more

  14. #13
    zerobrium's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    613
    Reputation
    13
    Thanks
    823
    Quote Originally Posted by JamesRo View Post
    - he also released the Dark Mystic 3.3 source wich led to various cheap imitators anhd wannabes slapping their name on it and re-releasing it.
    What do you mean by this? I haven't seen any actual copies of Dark Mystic.

  15. #14
    AboodElshreef's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    Egypt, Cairo
    Posts
    611
    Reputation
    10
    Thanks
    2,643
    My Mood
    Amazed
    You Can Get Any Function in Game From The Game Source
    It is Not easy & Need A Lot Of Time
    I Wake Up At 10AM And Making The Trainer
    To 8PM Then I Sleep

  16. #15
    JamesRo's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    1,872
    Reputation
    182
    Thanks
    17,852
    My Mood
    Happy
    Quote Originally Posted by zerobrium View Post
    What do you mean by this? I haven't seen any actual copies of Dark Mystic.
    Look around harder... You'll see some.

Page 1 of 5 123 ... LastLast

Similar Threads

  1. [Tutorial] Easy way to get lots of ironbars [Server Tested And Worked] [Cheat] [Source Code]
    By Dongonata in forum Starbound Hacks & Cheats
    Replies: 9
    Last Post: 04-30-2018, 06:35 PM
  2. [Request] Source code for make cheat trial version / vip paid
    By blaztphoenix in forum C++/C Programming
    Replies: 9
    Last Post: 06-05-2014, 02:56 AM
  3. [Help Request] Using Cheat Engine to find Source Code / Address
    By Drazzix in forum Call of Duty Modern Warfare 3 Help
    Replies: 0
    Last Post: 02-18-2013, 06:44 AM
  4. [Source Code] Source Code Example
    By Chocolate[Coder] in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 43
    Last Post: 02-01-2011, 08:51 PM
  5. Source Code Dump + Explanations on what they do!
    By Pixie in forum Visual Basic Programming
    Replies: 3
    Last Post: 11-09-2009, 06:51 AM