google-site-verification: googlebaca44933768a824.html Codeing A Public Css Hack (Help!) - Old Royal Hack Forum

Announcement

Collapse
No announcement yet.

Codeing A Public Css Hack (Help!)

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

    Codeing A Public Css Hack (Help!)

    Hello there,

    I recently started work on a new project, I noticed royalhack, doesn't have any free public hacks that work, so I thought I'd make one FOR FUN...
    Here how it looks so far, I have finished all the codeing :P.



    But here is my problem, example
    Call WriteALong("Counter-Strike Source", &H686E1F58, 1)
    I used Cheat Engine to find the Address for sv_cheats 1, and i got the following code 686E1F58, but when I restarted my computer I noticed that the hack wasn't working, so I went there and look at the Address in Cheat Engine again but I noticed it has Changed to 651D1F58.
    So my question is, is there any reason behind this, any help would be much appreciated.

    #2
    Re: Codeing A Public Css Hack (Help!)

    mhm...
    maybe cs:s is intelligent now and change the code for this at every restart :>

    btw *-*

    Last edited by eXess; 04-26-2012, 11:25 AM.

    Comment


      #3
      Re: Codeing A Public Css Hack (Help!)

      Yeah this ain't a good spot to post your hacks. Post them to the coding section!

      Also, do you have any coded shit or just some sv_cheats injector / activator?
      ok bai

      Comment


        #4
        Re: Codeing A Public Css Hack (Help!)

        Originally posted by lolimsoasd View Post
        Yeah this ain't a good spot to post your hacks. Post them to the coding section!

        Also, do you have any coded shit or just some sv_cheats injector / activator?
        Sorry I'll do that next time, If an administrator could Please move this post thank you.

        It's only a sv_cheats injector at the moment, I am limited what i can do since I'm codeing it in vb 6.0, When I should be doing it in C++.
        But I only Wanted to see if I could actually make a css hack in vb, so that's why I set myself this challenge.

        Comment


          #5
          Re: Codeing A Public Css Hack (Help!)

          Making it in VB is impossible if you want to use the SDK.
          b 2 k 5: baeh, a dead fly in my cola, brb

          Comment


            #6
            Re: Codeing A Public Css Hack (Help!)

            Originally posted by demize View Post
            Making it in VB is impossible if you want to use the SDK.
            It isn't impossible, i have managed to make it work, but the hex code for sv_cheats keeps on changing in the hl2.exe, and that's what I can't figure out

            Comment


              #7
              Re: Codeing A Public Css Hack (Help!)

              It's because the address is not static. You must substract the module base address to get the offset and then, do something like:

              c++:
              *(int*)((DWORD)GetModuleHandle("whatever.dll") + 0x1234) = 1;

              Comment


                #8
                Re: Codeing A Public Css Hack (Help!)

                Originally posted by how02 View Post
                It's because the address is not static. You must substract the module base address to get the offset and then, do something like:

                c++:
                *(int*)((DWORD)GetModuleHandle("whatever.dll") + 0x1234) = 1;
                ----- which is not possible in vb.net
                ok bai

                Comment


                  #9
                  Re: Codeing A Public Css Hack (Help!)

                  I don't know vb.net, but he can still use writeprocessmemory, doesn't matter if it's on local or remote process

                  Comment


                    #10
                    Re: Codeing A Public Css Hack (Help!)

                    This manipulation is totally doable in vb. Many trainer were created by using it. As stated earlier how02, he can use wpm to do that.

                    Comment


                      #11
                      Re: Codeing A Public Css Hack (Help!)

                      You can't include C++ files in VB. Therefore if you wanna use the SDK for CSS to code your hacks, you're gonna have to use C++. Just saying.
                      b 2 k 5: baeh, a dead fly in my cola, brb

                      Comment

                      Working...
                      X