Poll: Do you use your self coded base ? or another ?

Be advised that this is a public poll: other users can see the choice(s) you selected.

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 44
  1. #16
    matypatty's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    864
    Reputation
    229
    Thanks
    2,694
    My Mood
    Amused
    Gellins, he pro

  2. #17
    TrixtSam's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    129
    I've coded my own.. and in all fairness.. You can't beat taking @Shadow` 's Redemption Base, and @Nightmare 's Menu nav and combining them.. That for me is an epic and clean menu.

  3. #18
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    A menu GUI isn't really that hard to make.
    It's just that noone is bothered to do it.
    No I do not make game hacks anymore, please stop asking.

  4. #19
    R4v0r's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    London
    Posts
    234
    Reputation
    11
    Thanks
    142
    My Mood
    Amazed
    I have to say honestly, I can do everything of a d3d base( from menu, hooking, etc )
    The only thing which I cannot do is making detours..

  5. #20
    ⁿₒₒʙ's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    14
    i maek 100% mine kkkkkkkkkkkk

  6. #21
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,566
    Reputation
    5180
    Thanks
    14,176
    My Mood
    Inspired
    Quote Originally Posted by ⁿₒₒʙ View Post
    i maek 100% mine kkkkkkkkkkkk
    u leech all tiem
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


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

    R4v0r (02-13-2013)

  8. #22
    Void(int)'s Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    4
    I use gellins base, but I know how to keep it updated.

  9. #23
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Real men hack in Javascript.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  10. The Following 3 Users Say Thank You to Jason For This Useful Post:

    [MPGH]Flengo (02-14-2013),Saltine (02-14-2013),Shadow` (02-14-2013)

  11. #24
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    You think I'm kidding? A taste of my current base:

    [JavaScript] (function(consoleAddr) { function PtcHack(cmd, on, off, active) { this.comm - Pastebin.com

    Code:
        (function(consoleAddr) {
                function PtcHack(cmd, on, off, active) {
                        this.command = cmd;
                        this.on = on;
                        this.off = off;
                        this.active = (active === undefined ? false : active);
                }
               
                PtcHack.prototype.toggle = function() {
                        this.active = !this.active;
                        var cmd = this.command + ' ' + (this.active ? this.on : this.off);
                        Console.push(cmd);
                };
               
                function MemoryHack(address, on, off, size, active) {
                        this.address = address;
                        this.on = on;
                        this.off = off;
                        this.size = size;
                        this.active = (active === undefined ? false : active);
                }
               
                MemoryHack.prototype.toggle = function() {
                        this.active = !this.active;
                        Memory.copy(this.address, (this.active ? this.on : this.off), this.size);
                };
               
                var chams       = new PtcHack('SkelModelStencil', '1.0', '0.0');
                var wireframe   = new PtcHack('WireFrame', '1.0', '0.0');
                var nofog       = new PtcHack('FogEnable', '1.0', '0.0');
                var showfps     = new PtcHack('ShowFPS', '1.0', '0.0');
                var superbullet = new MemoryHack(0x37511606, "\x33\xC0\x90", "\x0F\x94\xC0", 3);
               
                Console.init(consoleAddr);
                Keyboard.onkeydown = function(keycode) {
                        switch(keycode) {
                                case 0x61: // VK_NUMPAD1
                                        chams.toggle(); break;
                                case 0x62: // VK_NUMPAD2
                                        wireframe.toggle(); break;
                                case 0x63: // VK_NUMPAD3
                                        nofog.toggle(); break;
                                case 0x64: // VK_NUMPAD4
                                        showfps.toggle(); break;
                                case 0x64: // VK_NUMPAD5
                                        superbullet.toggle(); break;
                                default: break;
                        }
                };
        })();
    :3

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  12. #25
    Saltine's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    493
    Reputation
    104
    Thanks
    629
    Quote Originally Posted by Jason View Post
    You think I'm kidding? A taste of my current base:

    [JavaScript] (function(consoleAddr) { function PtcHack(cmd, on, off, active) { this.comm - Pastebin.com

    Code:
        (function(consoleAddr) {
                function PtcHack(cmd, on, off, active) {
                        this.command = cmd;
                        this.on = on;
                        this.off = off;
                        this.active = (active === undefined ? false : active);
                }
               
                PtcHack.prototype.toggle = function() {
                        this.active = !this.active;
                        var cmd = this.command + ' ' + (this.active ? this.on : this.off);
                        Console.push(cmd);
                };
               
                function MemoryHack(address, on, off, size, active) {
                        this.address = address;
                        this.on = on;
                        this.off = off;
                        this.size = size;
                        this.active = (active === undefined ? false : active);
                }
               
                MemoryHack.prototype.toggle = function() {
                        this.active = !this.active;
                        Memory.copy(this.address, (this.active ? this.on : this.off), this.size);
                };
               
                var chams       = new PtcHack('SkelModelStencil', '1.0', '0.0');
                var wireframe   = new PtcHack('WireFrame', '1.0', '0.0');
                var nofog       = new PtcHack('FogEnable', '1.0', '0.0');
                var showfps     = new PtcHack('ShowFPS', '1.0', '0.0');
                var superbullet = new MemoryHack(0x37511606, "\x33\xC0\x90", "\x0F\x94\xC0", 3);
               
                Console.init(consoleAddr);
                Keyboard.onkeydown = function(keycode) {
                        switch(keycode) {
                                case 0x61: // VK_NUMPAD1
                                        chams.toggle(); break;
                                case 0x62: // VK_NUMPAD2
                                        wireframe.toggle(); break;
                                case 0x63: // VK_NUMPAD3
                                        nofog.toggle(); break;
                                case 0x64: // VK_NUMPAD4
                                        showfps.toggle(); break;
                                case 0x64: // VK_NUMPAD5
                                        superbullet.toggle(); break;
                                default: break;
                        }
                };
        })();
    :3
    Do you execute it with V8 or some similar engine?

    Oh no! Vortex is gay!

  13. #26
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by Saltine View Post

    Do you execute it with V8 or some similar engine?
    Yeah, been playing around with V8 for the last few days, it's pretty fun.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  14. #27
    arun823's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Los Angeles, California
    Posts
    523
    Reputation
    151
    Thanks
    1,899
    My Mood
    Amused
    Quote Originally Posted by Acea View Post
    100% mine except a D3D Mesh idea saltine gave me :3
    100% yours, no wonder it lags and its full of memory leaks. Lol, joking. No but seriously, your hack lags me a shit ton. 3k FPS without your hack in lobby, with your hack: 200 FPS. No offense, just telling you what I encountered and the truth.

    Anyways, I usually incorporate many other bases' ideas and use my knowledge to create a new base. It's also very easy to create a base, you really need just the fundamental knowledge of c++ and directx
    Reversing is the only way to move forward.

  15. #28
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by arun823 View Post

    100% yours, no wonder it lags and its full of memory leaks. Lol, joking. No but seriously, your hack lags me a shit ton. 3k FPS without your hack in lobby, with your hack: 200 FPS. No offense, just telling you what I encountered and the truth.

    Anyways, I usually incorporate many other bases' ideas and use my knowledge to create a new base. It's also very easy to create a base, you really need just the fundamental knowledge of c++ and directx
    3K FPS? Lol.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  16. The Following User Says Thank You to Jason For This Useful Post:

    Saltine (02-17-2013)

  17. #29
    arun823's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Los Angeles, California
    Posts
    523
    Reputation
    151
    Thanks
    1,899
    My Mood
    Amused
    Quote Originally Posted by Jason View Post


    3K FPS? Lol.
    Lol yes 3k FPS, AMD FX 8120 4GHZ, nVidia GTX 560
    Reversing is the only way to move forward.

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

    kssiobr (02-19-2013),Shadow` (02-18-2013)

  19. #30
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow

    Quote Originally Posted by arun823
    your hack lags me a shit ton. 3k FPS without your hack in lobby, with your hack: 200 FPS.
    The only situation where this would make the slightest impact was if you had a > 200Hz monitor (fucking expensib). Other than that your GPU's VSync should be manging your framerate anyway to avoid tearing. Regardless, anything over about 45-60fps and the human eye can't even tell the difference.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  20. The Following User Says Thank You to Jason For This Useful Post:

    [MPGH]Flengo (02-19-2013)

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Can you use your own or different scripts with the Va hack ?
    By 09hedleyw in forum DayZ Discussion
    Replies: 7
    Last Post: 01-26-2013, 06:59 PM
  2. [Info] Do you want your own Warrock Injector with your design?
    By Lukas59 in forum WarRock Discussions
    Replies: 0
    Last Post: 11-29-2009, 04:47 AM
  3. how do you make your own hack?
    By niggerhoes in forum Combat Arms Discussions
    Replies: 11
    Last Post: 10-16-2009, 06:20 PM
  4. What Would You name Your own FPS Game?
    By killzonekings in forum Combat Arms Hacks & Cheats
    Replies: 25
    Last Post: 06-01-2009, 02:22 AM
  5. HOW DO YOU MAKE YOUR OWN HACKS?
    By chrisisafoo in forum Combat Arms Hacks & Cheats
    Replies: 20
    Last Post: 05-03-2009, 10:46 PM