Thread: Godmode help!

Results 1 to 12 of 12
  1. #1
    NitroSmily's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    101
    Reputation
    10
    Thanks
    1,091
    My Mood
    Tired

    Question Godmode help!

    Hey guys, I have one last problem before I release my new hack and I have a problem with godmode.
    You see I have the address and value as 99999, but the value goes back to 100 whenever I set it to 99999.
    So I tried to make it freeze the value at some point, but it doesn't seem to work
    Does anyone have any suggestions?

    Code:
       
        Sub GodActi()
            If godmode = True Then godmode = True Else godmode = False
        End Sub
    
     Dim godmode As Boolean = False
        Private Sub Timer7_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer7.Tick
            hotkey1 = GetAsyncKeyState(Keys.NumPad7)
            If GetAsyncKeyState(Keys.NumPad7) Then GodActi()
            If godmode = True Then
                MW3.Process_Handle("iw5sp")
                MW3.WriteInteger(&H1196C28, 9999999) 'Health    <-----Value
            End If
        End Sub

  2. #2
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty
    Quote Originally Posted by NitroSmily View Post
    Sub GodActi()
    If godmode = True Then godmode = True Else godmode = False
    End Sub

    Dim godmode As Boolean = False
    Private Sub Timer7_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer7.Tick
    hotkey1 = GetAsyncKeyState(Keys.NumPad7)
    If GetAsyncKeyState(Keys.NumPad7) Then GodActi()
    If godmode = True Then
    MW3.Process_Handle("iw5sp")
    MW3.WriteInteger(&H1196C28, 9999999) 'Health <-----Value
    End If
    End Sub
    You could set it to -9999 so your dead and can't die again, It's another way for godmode, but the screen is really bloody :/

  3. #3
          ( ° ͜ʖ͡°)╭∩╮
    Former Staff
    MarkHC's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    2,750
    Reputation
    66
    Thanks
    14,529
    My Mood
    Angelic
    I'm not good with VB.. but I think this line "hotkey1 = GetAsyncKeyState(Keys.NumPad7)" Does nothing.. you might consider removing it.. Back to the problem.. does it work with CE?
    Last edited by MarkHC; 09-29-2012 at 09:46 AM.


    CoD Minion from 09/19/2012 to 01/10/2013

  4. #4
    NitroSmily's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    101
    Reputation
    10
    Thanks
    1,091
    My Mood
    Tired
    Quote Originally Posted by Geomatrical View Post
    You could set it to -9999 so your dead and can't die again, It's another way for godmode, but the screen is really bloody :/
    Didn't work
    When you activate it, you go down in death mode wiithout loosing or anything. You are just downed and can't move until someone hits you and you are back up with 100 in health

    ---------- Post added at 10:01 AM ---------- Previous post was at 09:48 AM ----------

    Yes it works with CE, and I am aware of that "hotkey1 = GetAsyncKeyState(Keys.NumPad7)" doesn't work

  5. #5
    inmate's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Bottrop, NRW, Germany
    Posts
    131
    Reputation
    10
    Thanks
    194
    My Mood
    Amazed
    Are you sure that you are the host ? cuz godmode only work when you are the host.

    cheers

  6. #6
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty
    Well, no one knows, best ask @Jorndel

  7. The Following User Says Thank You to Geometrical For This Useful Post:

    Jorndel (09-29-2012)

  8. #7
    NitroSmily's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    101
    Reputation
    10
    Thanks
    1,091
    My Mood
    Tired
    Quote Originally Posted by inmate View Post
    Are you sure that you are the host ? cuz godmode only work when you are the host.

    cheers
    Can you read?
    It's survival mode, you don't need to be host if you are playing solo.

  9. #8
    Horror's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    51,4.
    Posts
    6,920
    Reputation
    574
    Thanks
    5,050
    My Mood
    Twisted
    Quote Originally Posted by NitroSmily View Post
    Can you read?
    It's survival mode, you don't need to be host if you are playing solo.
    Ah, so thats why. Indeed, putting value on 99999 in SP, wont work. U have to freeze it to 100.
    Code:
    Sub GodActi()
            If godmode = True Then godmode = True Else godmode = False
        End Sub
    
     Dim godmode As Boolean = False
        Private Sub Timer7_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer7.Tick
            hotkey1 = GetAsyncKeyState(Keys.NumPad7)
            If GetAsyncKeyState(Keys.NumPad7) Then GodActi()
            If godmode = True Then
                MW3.Process_Handle("iw5sp")
                MW3.WriteInteger(&H1196C28, 100) 'Health    <-----Value
            End If
        End Sub
    And put Timer7 Interval on like 50-100 ... thats freezing on 100 ...
     

    Minion+ : February 2014 - January 2015
    Counter Strike: Global Offensive Minion : November 2014 - January 2015
    Alliance of Valiant Arms Minion : August 2014 - January 2015
    Need For Speed World Minion : January 2014 - January 2015
    Rust Minion : January 2014 - January 2015
    Call of Duty Minion : January 2013 - January 2015
    Editor : December 2012 - April 2013
    Donator : March 2014 - Current
    Member : October 2010 - Current

    Previously known as "Isaakske".

  10. #9
    NitroSmily's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    101
    Reputation
    10
    Thanks
    1,091
    My Mood
    Tired
    Quote Originally Posted by Isaakske View Post
    Ah, so thats why. Indeed, putting value on 99999 in SP, wont work. U have to freeze it to 100.
    Code:
    Sub GodActi()
            If godmode = True Then godmode = True Else godmode = False
        End Sub
    
     Dim godmode As Boolean = False
        Private Sub Timer7_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer7.Tick
            hotkey1 = GetAsyncKeyState(Keys.NumPad7)
            If GetAsyncKeyState(Keys.NumPad7) Then GodActi()
            If godmode = True Then
                MW3.Process_Handle("iw5sp")
                MW3.WriteInteger(&H1196C28, 100) 'Health    <-----Value
            End If
        End Sub
    And put Timer7 Interval on like 50-100 ... thats freezing on 100 ...
    It crashes the game

  11. #10
    Horror's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    51,4.
    Posts
    6,920
    Reputation
    574
    Thanks
    5,050
    My Mood
    Twisted
    Quote Originally Posted by NitroSmily View Post
    It crashes the game
    And 99999 doesnt ?
    Then idk Should work
     

    Minion+ : February 2014 - January 2015
    Counter Strike: Global Offensive Minion : November 2014 - January 2015
    Alliance of Valiant Arms Minion : August 2014 - January 2015
    Need For Speed World Minion : January 2014 - January 2015
    Rust Minion : January 2014 - January 2015
    Call of Duty Minion : January 2013 - January 2015
    Editor : December 2012 - April 2013
    Donator : March 2014 - Current
    Member : October 2010 - Current

    Previously known as "Isaakske".

  12. #11
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    I just say this for the hot-key thing:


    For the HP value.
    Write: -1 (That would be god-mode)
    <|OR|>
    Write: 9999 (That would be god modem nothing in-game does that much damage and you survive the hit :|)

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  13. #12
    gteuk's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    248
    Reputation
    15
    Thanks
    696
    This is mine and it works fine, at least had no complaints

    Code:
    Public Sub Timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            If gteuk.Process_Handle("iw5sp") Then
                If Timer1.Enabled = True Then
                    If CheckBox1.Checked = True Then
                        gteuk.WriteInteger(&H1196C28, 500)
                        gteuk.WriteInteger(&H1196C2C, 500)
                 
                    End If


    ---------- Post added at 06:25 PM ---------- Previous post was at 06:19 PM ----------

    my laser site in SP as this one

    Code:
        Private Sub Button3_Click_1(sender As System.Object, e As System.EventArgs) Handles Button3.Click
            If gteuk.Process_Handle("iw5sp") Then
                gteuk.WriteInteger(&H1380DF7, 191)
            Else
                Label1.Text = "MW3 Not Running"
                Label1.ForeColor = Color.AliceBlue
            End If
        End Sub

Similar Threads

  1. [Solved] help on Pub Console 1.6 and Godmode [NA]
    By aoa9999900000 in forum Vindictus Help
    Replies: 6
    Last Post: 01-14-2012, 04:27 PM
  2. Godmode and ohk help
    By Murderskillz12 in forum Vindictus Help
    Replies: 2
    Last Post: 07-17-2011, 10:28 AM
  3. [HELP] How to add godmode to an existing mod
    By Erige in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 3
    Last Post: 09-17-2010, 07:47 PM
  4. [HELP]Godmode
    By Mat901 in forum Combat Arms Hacks & Cheats
    Replies: 6
    Last Post: 08-22-2008, 08:32 AM
  5. Help on godmode
    By Monkey8823 in forum Combat Arms Hacks & Cheats
    Replies: 41
    Last Post: 08-20-2008, 08:17 PM