Page 3 of 5 FirstFirst 12345 LastLast
Results 31 to 45 of 67
  1. #31
    wtfiwantthatname's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    260
    Reputation
    10
    Thanks
    39
    My Mood
    Bored
    Also NextGen1 your declaring Process all access as &H1F0FFF which is fine. But under vista and up it is no longer the same value.
    "I don't believe in an afterlife, so I don't have to spend my whole life fearing hell, or fearing heaven even more. For whatever the tortures of hell, I think the boredom of heaven would be even worse." - Isaac Asimov

  2. #32
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Thanks, I am aware that Process_All_access has a new address, once I determine the new address, I will handle it.

    If someone already knows the proper address , Please post it, in the meantime, I am aware and really can't do much to change it at the moment.

    NVM, tried PROCESS_ALL_ACCESS = &H1FFFFF in vista, and it is fine, I will add it into a vista + module.

    Last edited by NextGen1; 05-02-2010 at 11:13 PM.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  3. #33
    mnpeepno2's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    In a barren wasteland
    Posts
    905
    Reputation
    10
    Thanks
    81
    thats epic can't wait to use it, but i am befuddled at the amount of work i have to get through before my free time, i know i havent been active, sometimes i stay up to 3 to do my work, but ill try to dl this when im done for today and i have a 10 min resting period.


    -----------------------------------------------

    My site: here
    My Blog: here
    My member's area: here
    Minecraft Sever Forum: here


    Minecraft Servers:

    Public:



    Private:



  4. #34
    wtfiwantthatname's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    260
    Reputation
    10
    Thanks
    39
    My Mood
    Bored
    Why create two seperate classes for injection. Why not just use the minimum amount of rights required?
    "I don't believe in an afterlife, so I don't have to spend my whole life fearing hell, or fearing heaven even more. For whatever the tortures of hell, I think the boredom of heaven would be even worse." - Isaac Asimov

  5. #35
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Standard injection as you know it, is based off information most "developers" here research, but lack in actual understanding of what needs to be done, so Injection as you know it simply need a process handle with enough access rights. However, considering this is a full SDK and we will be working on system wide DLL injection , This does require admin / or all access rights.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  6. #36
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Quote Originally Posted by NextGen1 View Post
    Sounds good, I am almost done with the Anti-Recoil, Rapidfire , and DX cross hair, sometime today probably
    Very very interested in this. =D



  7. #37
    WhiteBoiNic's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Co-Town, Tx
    Posts
    359
    Reputation
    8
    Thanks
    144
    My Mood
    Bored
    I fully read your first post, and i have no clue on how to get these working. It Wont show any of the files i extract when i try to put it in a project as an existing one...
    Talisman Online
    Server: All Stars
    IGN: Nic

    Playstation Plus
    Gamertag: Devlissparks

    WoW
    Server: Daggerspine (PVP)
    IGN: Necholas
    Battletag: Sparks

  8. #38
    mwb1234's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    460
    Reputation
    7
    Thanks
    65
    Hey guys here is a project for ya:

    Create a language that is very very BASIC for hack creation.
    How it works:
    You write code in the "MPGH Language" and then it sends it to a VB file that can then be compiled, or a C++ file that can also be compiled. Then when you create this "Language", hack making will forever more be easy...
    Example:

    Into the language compiler you input this:

    Code:
    Inject."Engine.exe"
    
    CreateHack.NoRecoil == 0x0ff2b /*CreateHack makes a function called 
    NoRecoil with the adress 0x0ff2b and can be told to Freeze, Pause(seconds) or whatever...*/
    
    CreateHack.NoSpread == 0x0ff2c /*Same as top but NoSpread not NoRecioil (for the Choobs)*/
    
    
    If.KeyDown(VK_NUMPAD1) NoRecoil.Freeze /*If Numpad1 is pressed, the address at NoRecoil gets frozen */
    
    If.KeyDown(VK_NUMPAD2) NoSpread.Freeze /Same as up there
    Code:
    EXPLANATION:
    
    The two hex addresses I used were totally random I just made up on the spot.
    -----------------------------------------------------------------------
    I don't really make hacks thats not my thing, but CreateHack makes a new function or whatever you VB people call it, and then the ==  declares the address that the hack your doing is stored at, such as the recoil address, the spread address, or the bone addresses for like aimbots.
    -----------------------------------------------------------------------
    The If.KeyDown is saying if you press a button, some event happens.
    In C++ this would be  equal to
    if(GetAsyncKeyState(VK_NUMPAD1))
    -----------------------------------------------------------------------
    The NoRecoil.Freeze tells to Freeze the value at the address that NoRecoil occurs at.

    And in VB you get something that I don't know because I don't speak VB.
    But NextGen1 you get the picture don't you? And since this code would be generic for all games, all our coders would have a MUCH easier time writing us hacks to pwn teh n00bs.

  9. #39
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Quote Originally Posted by mwb1234 View Post
    Hey guys here is a project for ya:

    Create a language that is very very BASIC for hack creation.
    How it works:
    You write code in the "MPGH Language" and then it sends it to a VB file that can then be compiled, or a C++ file that can also be compiled. Then when you create this "Language", hack making will forever more be easy...
    Example:

    Into the language compiler you input this:

    Code:
    Inject."Engine.exe"
    
    CreateHack.NoRecoil == 0x0ff2b /*CreateHack makes a function called 
    NoRecoil with the adress 0x0ff2b and can be told to Freeze, Pause(seconds) or whatever...*/
    
    CreateHack.NoSpread == 0x0ff2c /*Same as top but NoSpread not NoRecioil (for the Choobs)*/
    
    
    If.KeyDown(VK_NUMPAD1) NoRecoil.Freeze /*If Numpad1 is pressed, the address at NoRecoil gets frozen */
    
    If.KeyDown(VK_NUMPAD2) NoSpread.Freeze /Same as up there
    Code:
    EXPLANATION:
    
    The two hex addresses I used were totally random I just made up on the spot.
    -----------------------------------------------------------------------
    I don't really make hacks thats not my thing, but CreateHack makes a new function or whatever you VB people call it, and then the ==  declares the address that the hack your doing is stored at, such as the recoil address, the spread address, or the bone addresses for like aimbots.
    -----------------------------------------------------------------------
    The If.KeyDown is saying if you press a button, some event happens.
    In C++ this would be  equal to
    if(GetAsyncKeyState(VK_NUMPAD1))
    -----------------------------------------------------------------------
    The NoRecoil.Freeze tells to Freeze the value at the address that NoRecoil occurs at.

    And in VB you get something that I don't know because I don't speak VB.
    But NextGen1 you get the picture don't you? And since this code would be generic for all games, all our coders would have a MUCH easier time writing us hacks to pwn teh n00bs.
    Hmm...Where is the compiler / interpreter ?? Will it be able to make exe ??

  10. #40
    mwb1234's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    460
    Reputation
    7
    Thanks
    65
    Quote Originally Posted by FLAMESABER View Post
    Hmm...Where is the compiler / interpreter ?? Will it be able to make exe ??
    That whole post was a theoretical way to make coding hacks much easier. The compiler could be as simple as a Command Prompt window, or as complex as you fools want it. But all I'm saying is this:
    It could be done
    It should be done
    And it will GET done (Some Time!)

  11. #41
    /b/oss's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    13,651
    Reputation
    795
    Thanks
    3,547
    awesomness...

  12. #42
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    A note, this project has not been dropped, I am still working on it's completion.


     


     


     



    The Most complete application MPGH will ever offer - 68%




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

    Lolland (06-08-2010),Zoom (06-08-2010)

  14. #43
    ppl2pass's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    804
    Reputation
    5
    Thanks
    111
    My Mood
    Amused
    for the injector for combat arms, would the process be Engine.exe or Combat Arms. I tried Engine.exe but it didnt work.

  15. #44
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Window Name.



  16. #45
    ppl2pass's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    804
    Reputation
    5
    Thanks
    111
    My Mood
    Amused
    so its Combat Arms?

Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. Visual Basic Coding Team
    By Bombsaway707 in forum Combat Arms Discussions
    Replies: 3
    Last Post: 07-10-2010, 07:09 AM
  2. [TUTORIAL'S]Visual Basic Coding
    By Zoom in forum Combat Arms EU Hack Coding/Source Code
    Replies: 4
    Last Post: 04-13-2010, 02:32 PM
  3. visual basic coding
    By frendlyfire in forum General
    Replies: 5
    Last Post: 12-28-2009, 01:32 PM
  4. Cool Visual BASIC clock with code.
    By PandN in forum Visual Basic Programming
    Replies: 0
    Last Post: 07-14-2009, 05:11 AM
  5. Visual Basic 6 codes
    By jokuvaan11 in forum WarRock - International Hacks
    Replies: 13
    Last Post: 06-08-2007, 03:01 PM

Tags for this Thread