Results 1 to 8 of 8
  1. #1
    Bluthera's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Location
    Shibuya, Tokyo
    Posts
    2,375
    Reputation
    13
    Thanks
    373
    My Mood
    Tired

    Prestige not Working(Memory Hacking) & Ollydbg

    My Rank Hacks are working:
    Code:
    Private Sub Button37_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button37.Click
            '37
            Dim string1 As Long
            Dim string2 As Integer
            Try
                string1 = readdll("cshell.dll")
                string2 = "&H" + Hex(string1 + &H1B2B89C)
                Call VBPNBQKCVD(string2, 569900, 4)
            Catch
    
            End Try
    
        End Sub
    But my Prestige isn't:
    Code:
    Private Sub Prestige4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Prestige4.Click
            '4
            Dim string1 As Long
            Dim string2 As Integer
            Try
                string1 = readdll("cshell.dll")
                string2 = "&H" + Hex(string1 + &H1B2B8A4)
                Call VBPNBQKCVD(string2, 4, 4)
            Catch
    
            End Try
    
        End Sub


    All I did was copy the whole thing from first, then edited the address(and I have checked it over and over), changed the value. No error, but it doesn't work in-game. Any suggestions?

    Ollydbg

    Also heard that Ollydbg can find addresses. I find the iw4mp module>search for all referenced text strings>search for "prestige"(as an example).
    It says in the left area that the address is 00*******, but the real one is 01B2B** ("*" mean's i can't remember). So the addresses are different. Anyone knows how? Hell_demon mentioned something about MOV[x].y, but didn't elaborate.
    [IMG]https://i564.photobucke*****m/albums/ss89/JRendell21/Graphics/Flow-Signature.jpg[/IMG]

  2. #2
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    One of those addresses is probably the value. Only assuming this based on my knowledge and assembly and from what you said Hell_Demon gave you,

    Code:
    mov [x],y
    In this case, "x" is the address and the "mov" instruction is moving the contents of "y" into "x". The brackets is like the dereference operator in C++, sorry I can't explain it in VB since I don't know anything about it.

    If the actual value of "x" is an address, it will basically take whatever is in "x", and go to that location in memory and, then move whatever "y" is into that location.

    I think Hell_Demon was trying to tell you that you have to edit an instruction similar to that, I'm not sure.

    Ehh, this is more assembly than it is VB, if this is against the rules you guys can delete this.

  3. #3
    Bluthera's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Location
    Shibuya, Tokyo
    Posts
    2,375
    Reputation
    13
    Thanks
    373
    My Mood
    Tired
    Well, I need my 1st question answered, and the Ollydbg is more in interest of finding addresses that I can use in my VB trainer.


    Thanks for your thoughts anyway.
    [IMG]https://i564.photobucke*****m/albums/ss89/JRendell21/Graphics/Flow-Signature.jpg[/IMG]

  4. #4
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    This is really a question for Hell, Why or maybe warpath , Or anyone else who is more familiar with this then the VB section Probably is, I will allow it, But you may want to VM or PM one of them and point them to this thread.

    As far as the VB side goes, the code itself is flawless.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  5. #5
    Bluthera's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Location
    Shibuya, Tokyo
    Posts
    2,375
    Reputation
    13
    Thanks
    373
    My Mood
    Tired
    Quote Originally Posted by NextGen1 View Post
    This is really a question for Hell, Why or maybe warpath , Or anyone else who is more familiar with this then the VB section Probably is, I will allow it, But you may want to VM or PM one of them and point them to this thread.

    As far as the VB side goes, the code itself is flawless.
    Ugh. It's not working and I need it working >.< ()

    But um, yea, Hell_demon rarely responds, and he talks very complicated, so I'll go give WPS a link to this thread.
    [IMG]https://i564.photobucke*****m/albums/ss89/JRendell21/Graphics/Flow-Signature.jpg[/IMG]

  6. The Following User Says Thank You to Bluthera For This Useful Post:

    NextGen1 (02-27-2010)

  7. #6
    Lolland's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Lolland!
    Posts
    3,156
    Reputation
    49
    Thanks
    868
    My Mood
    Inspired
    Quote Originally Posted by Bluthera View Post
    ...But um, yea, Hell_demon rarely responds, and he talks very complicated...
    That's why he's my favourite.

    Anyways, I'd assume it would be something with the handling of the address (I.E. Perhaps you'd handle the Prestige address as a boolean, and the rank hack as an integer, I wouldn't know though: I don't hack COD)

    The code seems to be good though.

  8. #7
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Dim bla bla...declared at the top...

    Code:
    Private Sub pr2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles pr2.Click
            Try
                string1 = readdll("cshell.dll")
                string2 = "&H" + Hex(string1 + &H1B2B8A4)
                Call OIBGHGEJUO(string2, 2, 4)
            Catch
                MsgBox(ErrorToString)
            End Try
        End Sub
    Works fine.



  9. #8
    Bluthera's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Location
    Shibuya, Tokyo
    Posts
    2,375
    Reputation
    13
    Thanks
    373
    My Mood
    Tired
    Managed to get the Prestige problem solved. I just removed the Try, Catch, End Try. Thanks Blubb for telling me to put that in the first place

    Wonder why it would happen though.
    [IMG]https://i564.photobucke*****m/albums/ss89/JRendell21/Graphics/Flow-Signature.jpg[/IMG]

Similar Threads

  1. NOT WORKING ANY HACK HELLLPPPPP
    By darkbora in forum Combat Arms EU Help
    Replies: 7
    Last Post: 07-05-2010, 11:44 AM
  2. Combat arms not working with hacks!!!??
    By _-KaKaSHi_- in forum Combat Arms Help
    Replies: 8
    Last Post: 08-29-2009, 02:46 AM
  3. [HELP] My hacks still not working
    By ilovepie21 in forum Visual Basic Programming
    Replies: 5
    Last Post: 03-09-2008, 09:55 PM
  4. [Help] My hacks not working
    By ilovepie21 in forum Visual Basic Programming
    Replies: 4
    Last Post: 03-09-2008, 07:13 AM
  5. Hacks not working
    By crazy4her in forum WarRock - International Hacks
    Replies: 12
    Last Post: 06-07-2007, 03:25 AM