Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    Msdonald's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0

    Post Question about Source Code

    Hi guys! If i have adress, and buton.What i must write that "If button pressed Weapon LVL - 31" and "UAV button - if button pressed - UAV ON in game"
    Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button4.Click
    mw3.Hack("iw5mp")
    mw3.SetInt(&H1DC232F, TextBox4.Text)
    End Sub
    What i must writing?

  2. #2
    5555satan's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    i dont remember where i live
    Posts
    296
    Reputation
    10
    Thanks
    240
    My Mood
    Paranoid
    Quote Originally Posted by Msdonald View Post
    Hi guys! If i have adress, and buton.What i must write that "If button pressed Weapon LVL - 31" and "UAV button - if button pressed - UAV ON in game"


    What i must writing?
    i dont understand what u want.
    Press Thanks if i helped you / if you liked my signature



    Add me on skype: ReFusioNN-

  3. #3
    Msdonald's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button4.Click
    mw3.Hack("iw5mp")
    mw3.SetInt(&H1DC232F, TextBox4.Text)
    End Sub
    TextBox4.Text - change to Value?
    mw3.SetInt(&H1DC232F, 100)

  4. #4
    5555satan's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    i dont remember where i live
    Posts
    296
    Reputation
    10
    Thanks
    240
    My Mood
    Paranoid
    Quote Originally Posted by Msdonald View Post
    TextBox4.Text - change to Value?
    oh you want to change the value of something then do like this

    Code:
    Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button4.Click
    if IsNumberic(textbox4.text) = true then
    mw3.Hack("iw5mp")
    mw3.SetInt(&H1DC232F, TextBox4.Text)
    else
    msgobx("An error that u want to pop if some 1 dont put a number")
    End Sub
    hope i answered you
    Last edited by 5555satan; 05-01-2013 at 11:52 AM.
    Press Thanks if i helped you / if you liked my signature



    Add me on skype: ReFusioNN-

  5. #5
    Msdonald's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by 5555satan View Post
    oh you want to change the value of something then do like this

    Code:
    Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button4.Click
            If IsNumeric(TextBox4.Text) Then
    mw3.Hack("iw5mp")
    mw3.SetInt(&H1DC232F, TextBox4.Text)
    else
    msgobx("An error that u want to pop if some 1 dont put a number")
            End If
    End Sub
    hope i answered you
    How doing UAV and Emblem Unlocker?

  6. #6
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Quote Originally Posted by Msdonald View Post
    How doing UAV and Emblem Unlocker?
    For UAV, you'd need to find the DVAR offset for "g_compassShowEnemies" and change the byte to 1.
    For Emblems, you'd need to find the offset for emblems and patch it with a byte pattern (Which you can find in the Source Code thread)

  7. #7
    5555satan's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    i dont remember where i live
    Posts
    296
    Reputation
    10
    Thanks
    240
    My Mood
    Paranoid
    Quote Originally Posted by Msdonald View Post
    How doing UAV and Emblem Unlocker?

     
    Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button7.Click
    If mw3.Hack("iw5mp") = True Then
    mw3.Hack("iw5mp")
    mw3.SetInt(&H1C2C41C, "5")
    else
    msgobx("An error that u want to pop")
    End If
    End Sub



    if you need any thing else just post here and ill try to give you


    EDIT:
    i never tested them on VB.net, only on CE so i dont know if they will work without crash

    EDIT 2:
    if u want Emblem unlocker listen to Kenshin13
    Last edited by 5555satan; 05-01-2013 at 11:53 AM.
    Press Thanks if i helped you / if you liked my signature



    Add me on skype: ReFusioNN-

  8. #8
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Quote Originally Posted by 5555satan View Post
     
    Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button7.Click
    If IsNumeric(TextBox4.Text) Then
    mw3.Hack("iw5mp")
    mw3.SetInt(&H1C2C41C, "5")
    else
    msgobx("An error that u want to pop if some 1 dont put a number")
    End If
    End Sub



    if you need any thing else just post here and ill try to give you


    EDIT:
    i never tested them on VB.net, only on CE so i dont know if they will work without crash

    EDIT 2:
    if u want Emblem unlocker listen to Kenshin13
    0x1C2C41C is a pointer, not a dvar value. And also, it's for 1.4.382

  9. #9
    Msdonald's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button7.Click
    If IsNumeric(TextBox4.Text) Then
    mw3.Hack("iw5mp")
    mw3.SetInt(&H0x1C2C41C, "5")
    else
    msgobx("An error that u want to pop if some 1 dont put a number")
    End If
    End Sub
    so? Or different?

  10. #10
    5555satan's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    i dont remember where i live
    Posts
    296
    Reputation
    10
    Thanks
    240
    My Mood
    Paranoid
    Quote Originally Posted by Kenshin13 View Post


    0x1C2C41C is a pointer, not a dvar value. And also, it's for 1.4.382
    im using this on tekno, and it is working

    Edit:
    Quote Originally Posted by Msdonald View Post
    so? Or different?
    i edited the code. should be better :P
    Last edited by 5555satan; 05-01-2013 at 11:51 AM.
    Press Thanks if i helped you / if you liked my signature



    Add me on skype: ReFusioNN-

  11. #11
    Msdonald's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Сan I not use text fields? Press button - take UAV

  12. #12
    Msdonald's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    How doing weapon Hack?

  13. #13
    5555satan's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    i dont remember where i live
    Posts
    296
    Reputation
    10
    Thanks
    240
    My Mood
    Paranoid
    Quote Originally Posted by Msdonald View Post
    How doing weapon Hack?
    like for Emblem just different bytes
    Quote Originally Posted by Msdonald View Post
    Сan I not use text fields? Press button - take UAV
    yup
    Press Thanks if i helped you / if you liked my signature



    Add me on skype: ReFusioNN-

  14. #14
    Msdonald's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Byte? What doing for this?

    ---------- Post added at 03:16 PM ---------- Previous post was at 03:13 PM ----------

    Quote Originally Posted by Kenshin13 View Post


    For UAV, you'd need to find the DVAR offset for "g_compassShowEnemies" and change the byte to 1.
    For Emblems, you'd need to find the offset for emblems and patch it with a byte pattern (Which you can find in the Source Code thread)
    Weapons Level: 1DC02C0 - set value 31?

  15. #15
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Quote Originally Posted by Msdonald View Post
    Byte? What doing for this?

    ---------- Post added at 03:16 PM ---------- Previous post was at 03:13 PM ----------



    Weapons Level: 1DC02C0 - set value 31?
    Once again, to do that you'd need the byte pattern.

    Code:
    B0 36 00 00 B0 36 00 00 B0 36 00 00 B0 36 00 00 B0 36 00 00 B0 36 00 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 B0 36 00 00 B0 36 00 00 B0 36 00 00 B0 36 00 00 00 00 00 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 91 BD 02 00 00 00 00 00 B0 36 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 B0 36 00 00 B0 36 00 00 B0 36 00 00 B0 36 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 91 BD 02 00 00 00 00 00 00 00 00 00 B0 36 00 00

Page 1 of 2 12 LastLast

Similar Threads

  1. [Help] Question about source.
    By flytimer in forum CrossFire Europe Hack Source Code
    Replies: 1
    Last Post: 06-09-2012, 06:34 AM
  2. [Help] Pls help me about source code hack
    By vipluckystar in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 10
    Last Post: 05-30-2012, 06:16 AM
  3. For questions about the Code of WallHak + See Ghost in the Crossfire
    By vailozchinsu in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 8
    Last Post: 10-03-2010, 01:14 PM
  4. Need Help please(about source codes)
    By Laws_Vegas in forum C++/C Programming
    Replies: 5
    Last Post: 02-11-2010, 06:08 PM
  5. [Question]About hack coding
    By master11 in forum C++/C Programming
    Replies: 12
    Last Post: 07-17-2009, 11:49 AM