google-site-verification: googlebaca44933768a824.html CSPromod Basehook - Old Royal Hack Forum

Announcement

Collapse
No announcement yet.

CSPromod Basehook

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    CSPromod Basehook

    Today i was bored and since there are no HvH kids @ CSPromod( i guess the problem either is to fix the EyePosition or just they don't like the mod ) , the base has everything you need to "code" your own Hax-v-Hax hook..

    Hooked:
    Paint Traverse
    Create Move

    Credits:
    Inside DLLMain.cpp

    c+ped by Hellhound...

    and my only request , don't fucking build your own pay-2-cheat site..

    Edit: also to compile it ull need the sdk , start Source SDK and download the Half-Life 2 DM SDK to
    Code:
    C:\SDK
    and then copy the whole "SDK" folder to the source.
    Attached Files
    IP: 93.127.228.26
    Mail: [email protected]

    #2
    Re: CSPromod Basehook

    Originally posted by Hellhound
    Today i was bored and since there are no HvH kids @ CSPromod( i guess the problem either is to fix the EyePosition or just they don't like the mod ) , the base has everything you need to "code" your own Hax-v-Hax hook..

    Hooked:
    Paint Traverse
    Create Move

    Credits:
    Inside DLLMain.cpp

    c+ped by Hellhound...

    and my only request , don't fucking build your own pay-2-cheat site..

    Edit: also to compile it ull need the sdk , start Source SDK and download the Half-Life 2 DM SDK to
    Code:
    C:\SDK
    and then copy the whole "SDK" folder to the source.
    Take two networked vars, do EyePosition with em as in SDK ( absorigin + view or whatever it was). Fix pointer to CInput. When i did it for Promod 1.4 which is still the latest i guess, i ended up for using just relative offset for it:
    Code:
    CInput pointer=client.dll + 0x3E05C8
    Those are only two differences compared to old CSS ( at least at this stage of the hook, i guess recoil at least is somehow different, i'm not 100% sure tho since i've never done CS: Promod any further than just hooking Createmove myself and fixing the CInput). But but.... thanks for releasing!

    EDIT: And is lack of HvH-kids somehow bad thing? Thing that should be fixed?
    lolmaoman: Germans are born with a lifetime x22 login engraved into their birth certificates. True story.
    I DONT HAVE TEAMVIEWER AND IM NOT GOING TO GIVE ANY 24/7 ONLINE SUPPORT VIA STEAM, XFIRE OR OTHER IM PROGRAMS SO DONT BOTHER ASKING. THANKS.

    Comment


      #3
      Re: CSPromod Basehook

      Originally posted by mencore View Post
      Take two networked vars, do EyePosition with em as in SDK ( absorigin + view or whatever it was). Fix pointer to CInput. When i did it for Promod 1.4 which is still the latest i guess, i ended up for using just relative offset for it:
      Code:
      CInput pointer=client.dll + 0x3E05C8
      Those are only two differences compared to old CSS ( at least at this stage of the hook, i guess recoil at least is somehow different, i'm not 100% sure tho since i've never done CS: Promod any further than just hooking Createmove myself and fixing the CInput). But but.... thanks for releasing!

      EDIT: And is lack of HvH-kids somehow bad thing? Thing that should be fixed?
      the game is boring without hvh kids in-it , and btw why are you doing
      Code:
      client.dll + 0x3E05C8
      if you can doo VMT[11] + 0x2 ?

      VMT[11] = either HudText or IN_ActivateMouse ..
      Last edited by Hellhound; 09-03-2010, 10:56 PM.
      IP: 93.127.228.26
      Mail: [email protected]

      Comment


        #4
        Thankk u for releasing
        Pressing thanks helps alot!

        Comment


          #5
          Re: CSPromod Basehook

          recoil is done the same method as css:

          Code:
          24019314   E8 D7F0FFFF      CALL client.240183F0
          24019319   D907             FLD DWORD PTR DS:[EDI]
          2401931B   D886 640B0000    FADD DWORD PTR DS:[ESI+B64]
          24019321   D91F             FSTP DWORD PTR DS:[EDI]
          24019323   D986 680B0000    FLD DWORD PTR DS:[ESI+B68]
          24019329   D847 04          FADD DWORD PTR DS:[EDI+4]
          2401932C   D95F 04          FSTP DWORD PTR DS:[EDI+4]
          2401932F   D986 6C0B0000    FLD DWORD PTR DS:[ESI+B6C]
          24019335   D847 08          FADD DWORD PTR DS:[EDI+8]
          24019338   D95F 08          FSTP DWORD PTR DS:[EDI+8]
          2401933B   8B0D A4383824    MOV ECX,DWORD PTR DS:[243838A4]          ; client.243E05CC
          24019341   8B01             MOV EAX,DWORD PTR DS:[ECX]
          24019343   8B50 40          MOV EDX,DWORD PTR DS:[EAX+40]
          24019346   FFD2             CALL EDX
          24019348   84C0             TEST AL,AL
          @ mencore input is now CInput pointer=client.dll + 0x3E0500 ////2408D024 8B0D 34383824 MOV ECX,DWORD PTR DS:[24383834] ; client.243E0500

          spread however, now that is a different story -_-...........and to the OP who the hell would play hvh in promod lol?
          Last edited by jesusjuice; 09-04-2010, 07:57 PM.

          Comment


            #6
            naise jawb, but how come you don't use GetAbsOrigin in your eye position function?

            Comment


              #7
              Re: CSPromod Basehook

              Originally posted by badsta View Post
              naise jawb, but how come you don't use GetAbsOrigin in your eye position function?
              i actual'y don't know why i didn't doo it like that
              IP: 93.127.228.26
              Mail: [email protected]

              Comment


                #8
                Re: CSPromod Basehook

                Originally posted by Hellhound View Post
                the game is boring without hvh kids in-it , and btw why are you doing
                Code:
                client.dll + 0x3E05C8
                if you can doo VMT[11] + 0x2 ?

                VMT[11] = either HudText or IN_ActivateMouse ..
                Ya i know that any IN_Func + certain amount of bytes is another way to do it, even better. I've just used to my habits since i've done it that way for like 4 mods already ( Neotokyo, AHL2, CS: Promod, L4D ) :D

                Originally posted by jesusjuice View Post
                recoil is done the same method as css:

                Code:
                24019314   E8 D7F0FFFF      CALL client.240183F0
                24019319   D907             FLD DWORD PTR DS:[EDI]
                2401931B   D886 640B0000    FADD DWORD PTR DS:[ESI+B64]
                24019321   D91F             FSTP DWORD PTR DS:[EDI]
                24019323   D986 680B0000    FLD DWORD PTR DS:[ESI+B68]
                24019329   D847 04          FADD DWORD PTR DS:[EDI+4]
                2401932C   D95F 04          FSTP DWORD PTR DS:[EDI+4]
                2401932F   D986 6C0B0000    FLD DWORD PTR DS:[ESI+B6C]
                24019335   D847 08          FADD DWORD PTR DS:[EDI+8]
                24019338   D95F 08          FSTP DWORD PTR DS:[EDI+8]
                2401933B   8B0D A4383824    MOV ECX,DWORD PTR DS:[243838A4]          ; client.243E05CC
                24019341   8B01             MOV EAX,DWORD PTR DS:[ECX]
                24019343   8B50 40          MOV EDX,DWORD PTR DS:[EAX+40]
                24019346   FFD2             CALL EDX
                24019348   84C0             TEST AL,AL
                @ mencore input is now CInput pointer=client.dll + 0x3E0500 ////2408D024 8B0D 34383824 MOV ECX,DWORD PTR DS:[24383834] ; client.243E0500

                spread however, now that is a different story -_-...........and to the OP who the hell would play hvh in promod lol?
                Aah ok, havent hax0red this game since last xmas or something, before army, thanks :D and yeah, i have to agree 100% that why the fuck would anyone want HvH fags for any game, if anything rage the hell out of nerds on VAC-servers (:
                lolmaoman: Germans are born with a lifetime x22 login engraved into their birth certificates. True story.
                I DONT HAVE TEAMVIEWER AND IM NOT GOING TO GIVE ANY 24/7 ONLINE SUPPORT VIA STEAM, XFIRE OR OTHER IM PROGRAMS SO DONT BOTHER ASKING. THANKS.

                Comment


                  #9
                  nice thanks for codes

                  Comment


                    #10
                    Hey man,

                    Do you have msn?

                    Sorry for posting here, your pm's are full.

                    doey55

                    Comment


                      #11
                      Re: CSPromod Basehook

                      Originally posted by doey55 View Post
                      Hey man,

                      Do you have msn?

                      Sorry for posting here, your pm's are full.

                      doey55
                      i'm sorry , cleaned my pm's.

                      and yes , my msn: [email protected]
                      IP: 93.127.228.26
                      Mail: [email protected]

                      Comment

                      Working...
                      X