User Tag List

Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: [Release] Multi Hooker

  1. #1
    [Release] Multi Hooker

    User Info Menu

    [Release] Multi Hooker

    This is something fairly simple, but only for basic sub routining if you will. The beginning of the stack list starts from 0x004bc898 to 0x004bc8dc as noted below. Just apply the Multi Hooker and using any address between the beginning and end of the stack pieces to hook to whatever sub routine you might have. Also when using this, you have to hook it using a Jal.

    The basis for this idea is primarily from Demonspawns exploit and basicly how to use a reasonable method to allow non-hackers to be able to hack through exploitable game saves. This includes people who like to have many subroutines running at once for some reason as well.

    @note -> I felt it was time to go ahead and release this for now.

    Code:
     #Multi Hooker
     ;Omega2058
     0x00000098 0x0a32f224
     0x004bc890 0x27bdfff0
     0x004bc894 0xafbf0000
     0x004bc8e0 0x8fbf0000
     0x004bc8e4 0x03e00008
     0x004bc8e8 0x27bd0010
     
     #MH Stack begin
     0x004bc898 0x00
     
     #MH Stack End
     0x004bc8dc 0x00
    Code:
     E.G....
     
     #Knife []+R
     ;Tonic
     0x00000098 0x0a33b2a8; J 0x08cecaa0
     0x004ecaa0 0x3c0808d0
     0x004ecaa4 0x3c0909a8
     0x004ecaa8 0x8529e1e4
     0x004ecaac 0x240b8200
     0x004ecab0 0x35085858
     0x004ecab4 0x152b0004
     0x004ecabc 0x8d0c0000
     0x004ecac0 0x240d0008
     0x004ecac4 0xad8d0630
     0x004ecac8 0x03e00008
     
     Replace the hook for this with one of the many addresses on the Multi Hooks stack list and your good to go.  Thus allowing you to use many other subs that you currently have at your disposal without freezing from using the same hook over and over.
     
     #Knife []+R
     ;Tonic
     0x004bc898 0x0e33b2a8; Jal 0x08CECAA0
     0x004ecaa0 0x3c0808d0
     0x004ecaa4 0x3c0909a8
     0x004ecaa8 0x8529e1e4
     0x004ecaac 0x240b8200
     0x004ecab0 0x35085858
     0x004ecab4 0x152b0004
     0x004ecabc 0x8d0c0000
     0x004ecac0 0x240d0008
     0x004ecac4 0xad8d0630
     0x004ecac8 0x03e00008
    Last edited by omega2058; 08-13-2010 at 11:51 PM.

  2. #2
    Unique

    User Info Menu

    Re: [Release] Multi Hooker

    i suggest you really dumb this down for some people. i have no idea what your talking about

  3. #3
    [Release] Multi Hooker

    User Info Menu

    Re: [Release] Multi Hooker

    Nice shit omega sexy's too. And in all honesty If you can read you should be abole to understand, hes telling you how to do it and its not even coding on your part.
    Join Date
    11-10-2008!I joined exactly one year before MW2 !

  4. #4
    [Release] Multi Hooker

    User Info Menu

    Re: [Release] Multi Hooker

    Quote Originally Posted by Ounikao View Post
    i suggest you really dumb this down for some people. i have no idea what your talking about
    This is basically a hook. You take one of the address/hook in the Multi Hooker stack and use it as a hook in your subroutine.

    For example, you have 2 subroutines with a 0x00000098 hook, you use both of those subroutines at the same time and you freeze.

    So what you can do is just replace the hook in your subroutine with one of the address/hook in the Multi Hooker stack.

    Multi Hooker Stack List:
    0x004bc898
    0x004bc89c
    0x004bc8a0
    0x004bc8a4
    0x004bc8a8
    0x004bc8ac
    0x004bc8b0
    0x004bc8b4
    0x004bc8b8
    0x004bc8bc
    0x004bc8d0
    0x004bc8d4
    0x004bc8d8
    0x004bc8dc

    So let's just say you have these 2 codes in your DB.

    #Flash Sub
    0x00000098 0x0a400000
    0x00800000 0x3c0808d6
    0x00800004 0x3c094000
    0x00800008 0x35290000
    0x0080000c 0xad09fa2c
    0x00800010 0x03e00008

    #Inf Health Sub
    0x00000098 0x0a400000
    0x00800000 0x3c0808cd
    0x00800004 0x3c090000
    0x00800008 0x25290000
    0x0080000c 0xad099628
    0x00800010 0x03e00008

    If you use both of those codes at the same time, you freeze.
    So replace the hooks with one of the lines in the Multi Hooker stack list.
    And instead of using a J for the hook, you use a JAL. So just replace the 'A' in the hook value with an 'E'.

    #Flash Sub
    0x004bc898 0x0e400000
    0x00800000 0x3c0808d6
    0x00800004 0x3c094000
    0x00800008 0x35290000
    0x0080000c 0xad09fa2c
    0x00800010 0x03e00008

    #Inf Health Sub
    0x004bc89c 0x0e400000
    0x00800000 0x3c0808cd
    0x00800004 0x3c090000
    0x00800008 0x25290000
    0x0080000c 0xad099628
    0x00800010 0x03e00008

    Now if you use those 2 subroutines at the same time, you won't freeze. Just make sure you have the Multi Hooker code on.
    Last edited by Prestige; 07-25-2009 at 02:43 PM.
    .: PSN iD - KaoTiiK_ReFLeX :.


  5. #5
    Underground Coder

    User Info Menu

    Re: [Release] Multi Hooker

    Thanx again again omega
    FTB1&2:GeNeRaL-Noss
    ~
    MoNey sPreADs LiiKe GerMs, GeT siiCk NiGGuH~
    Quote Originally Posted by /B/rodigyz View Post
    Ruining the game aren't the coder's fault, it's the people who use the code
    STOP ABUSING CODES!!

  6. #6
    [Release] Multi Hooker

    User Info Menu

    Re: [Release] Multi Hooker

    Np and thanks alot for helping out with an explanation Prestige. Also not that it needs to be a JAL and not a J when using this.

  7. #7
    [Release] Multi Hooker

    User Info Menu

    Re: [Release] Multi Hooker

    good post man

  8. #8
    [Release] Multi Hooker

    User Info Menu

    Re: [Release] Multi Hooker

    Quote Originally Posted by As Known As View Post
    Nice shit omega sexy's too. And in all honesty If you can read you should be abole to understand, hes telling you how to do it and its not even coding on your part.
    abole

  9. #9
    BEAST

    User Info Menu

    Re: [Release] Multi Hooker

    thx man nice post

  10. #10
    [Release] Multi Hooker

    User Info Menu

    Re: [Release] Multi Hooker

    this stuff is easy to do, its already been released like back wen the ftb2 1.3 patch. the knife code wasnt released, but the multihooker thing was. silo made a tutorial on how to do it a long time ago, so technically its not a release, its new ppl not nowing any of the old stuff

Page 1 of 2 12 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •