Page 1 of 3 123 LastLast
Results 1 to 15 of 38
  1. #1
    Merccy2's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    886
    Reputation
    310
    Thanks
    19,668
    My Mood
    Cool

    Merccy's Hack Preview

    Hey Guys,

    This weekend I started working on an idea I had for some time.
    A platform that allows lua scripts to interact with CS:GO.

    Currently I have something functioning but it is far from done.

    Screenshot:


    Todo:
    • Add additional global tables for Menu, Display and Hotkeys
    • Add more utility functions like World2Screen (Might be in Utility or in Game)
    • Threading
    • Networking (normal downloading + websockets)
    • (Including a 2d/3d sound engine.)


    Done:
    • Interacting with the memory (Memory)
    • Player entities (Entities)
    • Mouse functionality (Utility.Mouse)


    Scripts (or actual hack functionality):
    • Aimbot
    • Triggerbot
    • Radar
    • RCS
    • No Flash
    • Mobile phone support (load scripts using your mobile phone, radar on your phone) (using websockets)
    • Soft aim (aim assist)
    • Sound ESP (maybe using directional sound)


    What are scripts and what can they do:
    Scripts are created in Lua which is imo a simple scripting language.
    Scripts can currently interact with the cs:go memory (RPM/WPM), use the mouse to move & click and get info about entities.
    Scripts can have 3 special functions at this moment:
    1. tick - Gets called approx. 1000 times a second, this is the main function where you put the other functions in.
    2. updateMe - Gets called when updating the me object (or your player), this allows scripts to add data to the me object which will become available for every other script
    3. updateEntity - Gets called for every entity when this entity is being updated, this allows scripts to add data to that entity and the changed entity will become available for every other script.


    Example scripts:

    Demo script:
    Code:
    TestScript = {
        -- Tick function gets called approx. 1000 times a second
        tick = function() 
    
        end,
        
        -- updateEntity(entity) gets called for every entity that is being updated except the special entity me
        updateEntity = function(ent)
            -- Currently the engine doesn't have a spotted variable so we can implement that with a script
            ent.spotted = false
            if (Memory:readInt(ent.dwBase + 0x935) == 1) then
                ent.spotted = true
            end
    
            -- An isEnemy function would also be nice
            ent.isEnemy = function()
                return (ent.team ~= Game.me.team)
            end
    
            return ent -- Return the modified entity
    
        end,
    
        -- updateMe(me) gets called when updating the me entity
        updateMe = function(me)
    
            return me -- The update functions should always(!) return a table with data
        end
    }
    
    register_script("TestScript")
    Radar + Triggerbot script:
    Code:
    HackScript = {
        tick = function() 
            HackScript.radar()
            HackScript.trigger()
        end,
    
        radar = function()
            for i, ent in ipairs(Game.Entities) do
                if (ent.isEnemy() and ent.lifeState == 0 and ent.spotted == false) then
                    Memory:writeInt(ent.dwBase + 0x935, 1)
                end
            end
        end,
    
        trigger = function()
            if (Game.me.inCross ~= 0) then
                for i, ent in ipairs(Game.Entities) do
                    if (ent.isEnemy()) then
                        Utility.Mouse.click(false)
                        return
                    end
                end
            end
        end
    }
    
    register_script("HackScript")
    For who will this hack be:
    The engine will have 2 versions a public and private one, the public one will have the same functionality but it will probably get detected fast. I intend to make the public engine undetected once every week but this depends on the popularity of mainly the private one.
    The private one will be able for sale but I am not sure how I will get a user base (as it is not allowed to post any kind of link in the hack).

    Who will make scripts:
    I have literally no idea who will make scripts but I will release basic scripts for the most popular functions (ESP, Aimbot, Radar, Trigger, RCS, No Flash).
    The idea is/was that other people can make improvements to those scripts or maybe sell them back to me for me to publish.

    What do you guys think about this idea and do you have any suggestions?
    Last edited by Merccy2; 01-13-2015 at 02:14 AM.

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

    elitee3540 (01-16-2015),tricted95 (01-17-2015)

  3. #2
    Zestor's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    Nowhere
    Posts
    104
    Reputation
    30
    Thanks
    66
    My Mood
    Amazed
    What a perfect idea. You seem well experienced in such field. I don't have any suggestions, good luck.
    You wanna kill me? You couldn't even kill my boredom.

  4. #3
    Quentlor's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Location
    'murica
    Posts
    216
    Reputation
    10
    Thanks
    163
    My Mood
    Lurking
    Good work mate, i'll try to come online on skype today if you need help or anything
    Over the night of the 1st May we lost one of the most important websites ever created. Godspeed Grooveshark
    .


  5. #4
    elitee3540's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    62
    Reputation
    81
    Thanks
    10
    My Mood
    Angelic
    Goodluck man, sounds promising!

    You got nice things to do, I'm not sure yet what to suggest next but better try to focus on these things first.
    Last edited by elitee3540; 01-16-2015 at 09:20 AM.

  6. #5
    Color's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    19,896
    Reputation
    2588
    Thanks
    7,864
    My Mood
    Lurking
    . @Merccy2 Regarding having to constantly up your offsets, if you set up so that your exe uses offsets based off a file from the internet(that you can edit whenever you want) you can have it so that you can keep your hack up to date. (This file checking can't download anything and is only used to check the current offsets)

    Member Since 8/05/2012
    Editor 4/04/13 - 4/21/13
    Middleman 7/14/13 - 11/4/13

    Battlefield Minion 6/13/14-3/20/15
    Steam Minion 7/16/14-3/20/15

    Minion+ 10/1/14-3/20/15
    M.A.T. Minion 10/19/14-3/20/15
    ROTMG Minion 1/14/15-3/20/15

    Donator Since 2/26/15 (Thanks @Cursed!)
    Steam Minion 5/9/15 - 11/5/15
    OSFPS Minion 9/15/15 - 11/5/15


  7. The Following User Says Thank You to Color For This Useful Post:

    elitee3540 (01-16-2015)

  8. #6
    Merccy2's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    886
    Reputation
    310
    Thanks
    19,668
    My Mood
    Cool
    Quote Originally Posted by Color View Post
    . @Merccy2 Regarding having to constantly up your offsets, if you set up so that your exe uses offsets based off a file from the internet(that you can edit whenever you want) you can have it so that you can keep your hack up to date. (This file checking can't download anything and is only used to check the current offsets)
    Thank you will implement that.

  9. #7
    Zindele's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    Michigan
    Posts
    1,300
    Reputation
    92
    Thanks
    159
    My Mood
    Drunk
    great work man looks great
    I have been hacked by Cursed<---- is a fag

    Vouches https://www.mpgh.net/forum/showthread.php?t=866562[/CENTER]

     

  10. #8
    Couleurs's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    Earth
    Posts
    53
    Reputation
    10
    Thanks
    4
    My Mood
    Inspired
    This.
    is.
    AWESOME.

  11. #9
    LittleRoxo's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    259
    Reputation
    10
    Thanks
    3,874
    My Mood
    Cheerful
    This looks good! Good work.

  12. #10
    Bayley_LOL's Avatar
    Join Date
    Jun 2014
    Gender
    female
    Location
    Trollaux's Leeching Grounds
    Posts
    527
    Reputation
    74
    Thanks
    1,437
    My Mood
    Bored
    Nice work man.

    Very very nice.

  13. #11
    Merccy2's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    886
    Reputation
    310
    Thanks
    19,668
    My Mood
    Cool
    Quote Originally Posted by Bayley_LOL View Post
    Nice work man.

    Very very nice.
    Thanks, do you have any suggestions in terms of how to make scripts like utilities that should be present.

  14. #12
    tricted95's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    115
    knifebot script, what do you think? is possible?

  15. #13
    Merccy2's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    886
    Reputation
    310
    Thanks
    19,668
    My Mood
    Cool
    Quote Originally Posted by tricted95 View Post
    knifebot script, what do you think? is possible?
    What is a knifebot?

  16. #14
    tricted95's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    115
    Quote Originally Posted by Merccy2 View Post
    What is a knifebot?
    Look , you can do that for cs: go?
    youtube. com/watch?v=8NEm38HiGz4

  17. #15
    Merccy2's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    886
    Reputation
    310
    Thanks
    19,668
    My Mood
    Cool
    Quote Originally Posted by tricted95 View Post
    Look , you can do that for cs: go?
    youtube. com/watch?v=8NEm38HiGz4
    Yeah I could.

Page 1 of 3 123 LastLast

Similar Threads

  1. [Preview] My Hack Preview
    By Takari in forum CrossFire Discussions
    Replies: 12
    Last Post: 05-22-2011, 10:51 AM
  2. Hack Preview
    By Takari in forum CrossFire Discussions
    Replies: 31
    Last Post: 04-10-2011, 03:40 AM
  3. [Preview] Battlefield Heroes Hack (PREVIEW NOT POSTING)
    By tambre in forum Battlefield Heroes Hacks
    Replies: 10
    Last Post: 09-23-2010, 02:10 AM
  4. Ca Hack Preview
    By CorporateHackers in forum Combat Arms Hacks & Cheats
    Replies: 12
    Last Post: 12-10-2009, 09:56 PM
  5. New working combat arms hack PREVIEW
    By LuckiiEmoo in forum Combat Arms Hacks & Cheats
    Replies: 6
    Last Post: 09-27-2009, 03:18 PM