Results 1 to 12 of 12
  1. #1
    CodeHPro's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    116
    Reputation
    10
    Thanks
    76
    My Mood
    Aggressive

    $20.00 PayPal For Some Help

    okay i need some Helping editing some Values in a game called halo2vista in vb 2008
    i will pay $20.00 PayPal to whoever can Answer my question if you dont think im Legit then just look on how many Subscribers i have on my youtube
    YouTube - Kanaal van codehpro
    Subscribers: 1,056
    im legit i will pay
    ok now to my question
    i need to Change this Address
    Code:
    halo2.exe+51A67A
    Value to
    Code:
    1
    how can i accomplish this ?
    i also need to grab text from this address
    Code:
    halo2.exe+51A638
    and put the text into my text box now if you can give me some code that can do this i will pay $20.00 PayPal or buy you vip here or anthing you want for the Price of $20.00 thank's Guy's

  2. #2
    Pixie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Pixie wird wieder steigen.
    Posts
    1,884
    Reputation
    22
    Thanks
    229
    My Mood
    Fine
    I can't help in this, but if you need anything else will help, I will help you for free... Just wait to my computer gets internet again...

  3. #3
    CodeHPro's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    116
    Reputation
    10
    Thanks
    76
    My Mood
    Aggressive
    Quote Originally Posted by PixieCorp View Post
    I can't help in this, but if you need anything else will help, I will help you for free... Just wait to my computer gets internet again...
    k thanks ..............

  4. #4
    T3HMangoKid's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    On a Boat...On a Lake
    Posts
    9
    Reputation
    10
    Thanks
    0
    My Mood
    Hungover
    like i said on the other forums where u posted this

    im guessing to get the value u do this
    Code:
    Textbox1.Text = halo2.exe+51A638
    and if u wanna edit the value u can do the reverse
    Code:
    halo2.exe+51A638 = Textbox1.Text
    but this might be easier in vb6
    well easier for me cuz im pro at vb6 i dont use vb2008

  5. #5
    CodeHPro's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    116
    Reputation
    10
    Thanks
    76
    My Mood
    Aggressive
    Quote Originally Posted by T3HMangoKid View Post
    like i said on the other forums where u posted this

    im guessing to get the value u do this
    Code:
    Textbox1.Text = halo2.exe+51A638
    and if u wanna edit the value u can do the reverse
    Code:
    halo2.exe+51A638 = Textbox1.Text
    but this might be easier in vb6
    well easier for me cuz im pro at vb6 i dont use vb2008
    dude! your code does not make any sense Please stop the spam dont post code unless you have actually tried it

  6. #6
    Pixie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Pixie wird wieder steigen.
    Posts
    1,884
    Reputation
    22
    Thanks
    229
    My Mood
    Fine
    Quote Originally Posted by T3HMangoKid View Post
    like i said on the other forums where u posted this

    im guessing to get the value u do this
    Code:
    Textbox1.Text = halo2.exe+51A638
    and if u wanna edit the value u can do the reverse
    Code:
    halo2.exe+51A638 = Textbox1.Text
    but this might be easier in vb6
    well easier for me cuz im pro at vb6 i dont use vb2008
    Wow... Nice sig tho

  7. #7
    iOwnage's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Aussie Aussie Aussie OI OI OI
    Posts
    118
    Reputation
    12
    Thanks
    58
    Alright. This is really simple, you should know this if you have that much suscribers >.>

    Add a timer, with this code:
    dim string1 as long
    dim string2 as integer
    string1 = readdll("halo2.exe") 'module of your address
    string2 = "&H" + Hex(string1 + &51A67A)
    Call writememory(string2,1,?)

    51A67A = Address
    1 = Value
    ? = Type

    Now, change ? to whatever type of address it is (1byte, 2byte, 4byte, 8 bytes) but don't write down "byte".

  8. #8
    GG2GG's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    United Kingdom
    Posts
    3,382
    Reputation
    21
    Thanks
    4,294,967,295
    My Mood
    Blah
    ASM IS WHERE ITS AT

  9. #9
    Obama'sSon's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    California
    Posts
    488
    Reputation
    10
    Thanks
    23
    My Mood
    Lonely
    If you need help go to my friend's website Asphyxiated Gaming he is a pro VB coder he been coding VB for bout 8 year's now. So just go there and post in the coder's block. I'm a Co-Admin there so you can trust it. And no I'm not advertising the website I'm just helping you get some help.

  10. #10
    Noxit's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    N:\O\X\I\T.exe
    Posts
    2,017
    Reputation
    24
    Thanks
    640
    My Mood
    Drunk
    Oh mai gawd i want 20 paypal ><
    Cant help ya lol, I can give you complete OP7 C++ Cource?
    --














  11. #11
    CodeHPro's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    116
    Reputation
    10
    Thanks
    76
    My Mood
    Aggressive
    found a guy at gamerzpanet he got it and i paid him here is the code
    Code:
    Public Class Form1
     Dim BaseAddress As Integer
     Private Sub asdfg()
            WriteInt((BaseAddress + 5351029), 16777216)
           End Sub
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Dim MyProcess As Process() = Process.GetProcessesByName("halo2")
            Dim mainModule As ProcessModule
            mainModule = MyProcess(0).MainModule
            BaseAddress = CInt(mainModule.BaseAddress)
        End Sub
    end class

  12. #12
    iOwnage's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Aussie Aussie Aussie OI OI OI
    Posts
    118
    Reputation
    12
    Thanks
    58
    CodeHPro.
    Can you help me out with pixelbot?
    I got a working one but I didn't make it, how do I make one?
    And Crosshair too plawx

Tags for this Thread