Thread: Zombies Stuff?

Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    gteuk's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    248
    Reputation
    15
    Thanks
    696

    Zombies Stuff?

    I finished my Zombies update but I cant post it on here as it has a banner in it otherwise I would share

    however here are some addresses as they do not all have the same offset, unless I missing something

    Multiplayer offset - 0x47A00

    so player 1 name is now 0x228E43C - 0x47A00

    This works for ammo, clips, name, money, tactical, lethal, teleport, primary weapon, second weapon, force prone / kill player, health

    This works for all the player info however

    FOV is different at - 0x35DE0

    Speed = 293A858 - 0x30C30

    Dvar r_fog does not seem to be working for me at present

    Max health has changed you can no longer write 999999 it will show a red screen you need to reduce both health and max health down to avoid this a value of 555 works well for me.

  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 gteuk View Post
    I finished my Zombies update but I cant post it on here as it has a banner in it otherwise I would share

    however here are some addresses as they do not all have the same offset, unless I missing something

    Multiplayer offset - 0x47A00

    so player 1 name is now 0x228E43C - 0x47A00

    This works for ammo, clips, name, money, tactical, lethal, teleport, primary weapon, second weapon, force prone / kill player, health

    This works for all the player info however

    FOV is different at - 0x35DE0

    Speed = 293A858 - 0x30C30

    Dvar r_fog does not seem to be working for me at present

    Max health has changed you can no longer write 999999 it will show a red screen you need to reduce both health and max health down to avoid this a value of 555 works well for me.
    Just lock it at 100

    Code:
    Do
        WriteMemory(&H123456789, 100)
    Loop
    Although that might be laggy.

  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
    Quote Originally Posted by Geometrical View Post
    Just lock it at 100

    Code:
    Do
        WriteMemory(&H123456789, 100)
    Loop
    Although that might be laggy.
    That does not work quite well cause you can take more than 100 damage on the same moment, aka dozens of zombies punching you all together... then you'll die :P


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

  4. #4
    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 -InSaNe- View Post
    That does not work quite well cause you can take more than 100 damage on the same moment, aka dozens of zombies punching you all together... then you'll die :P
    Then can't you change it to 0 for invulnerability like in MW3? I mean you can't die if your already dead...

  5. #5
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic
    Quote Originally Posted by Geometrical View Post
    Then can't you change it to 0 for invulnerability like in MW3? I mean you can't die if your already dead...
    think -1 is the tick
    (I use 500. Haven't got many/any reports of deaths)

     
    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

  6. #6
    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 Jorndel View Post


    think -1 is the tick
    (I use 500. Haven't got many/any reports of deaths)
    Over 100 is patched in MP, not sure bout zombies. Aswell as 0...
     

    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".

  7. #7
          ( ° ͜ʖ͡°)╭∩╮
    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
    Quote Originally Posted by Jorndel View Post


    think -1 is the tick
    (I use 500. Haven't got many/any reports of deaths)
    MW3 is so bad.. I mean.. I think they do it like:
    Code:
    if(Health == 0){
        //Dead
    }
    Then you set to -1 and fool the system

    If they just change the == to <= that'd be patched Poor MW3 Programmers...


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

  8. The Following User Says Thank You to MarkHC For This Useful Post:

    ThingOfMyth (01-10-2013)

  9. #8
    gteuk's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    248
    Reputation
    15
    Thanks
    696
    500 is ample on a 100ms timer, never dies even with a big wave of zombies.

  10. #9
    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 -InSaNe- View Post
    MW3 is so bad.. I mean.. I think they do it like:
    Code:
    if(Health == 0){
        //Dead
    }
    Then you set to -1 and fool the system

    If they just change the == to <= that'd be patched Poor MW3 Programmers...
    Well kinda, since they cant get hitmarkers on you anymore ... But u dont die
     

    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".

  11. #10
    gteuk's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    248
    Reputation
    15
    Thanks
    696
    Quote Originally Posted by Geometrical View Post
    Just lock it at 100

    Code:
    Do
        WriteMemory(&H123456789, 100)
    Loop
    Although that might be laggy.
    That would cause uber lag on games with many players, especially if you do ammo in the same way,

    Use timers,

    I use 100ms for health 2000ms for ammo, if you set ammo too 500 bullets then there is no reason why you could not set this to 5000ms

  12. #11
    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 gteuk View Post
    That would cause uber lag on games with many players, especially if you do ammo in the same way,

    Use timers,

    I use 100ms for health 2000ms for ammo, if you set ammo too 500 bullets then there is no reason why you could not set this to 5000ms
    Not rlly .. CPU/GPU intense ? Yeah, but shouldnt be a problem ... I got like 15 timers in one .exe and no lagg ... (everything 100-200 ms)
     

    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".

  13. #12
    sullydude's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Seattle, WA
    Posts
    91
    Reputation
    10
    Thanks
    168
    My Mood
    Bored
    Quote Originally Posted by -InSaNe- View Post
    That does not work quite well cause you can take more than 100 damage on the same moment, aka dozens of zombies punching you all together... then you'll die :P
    I know in MW3 you could write it to 0 and it would be god as well. Maybe its the same for Black ops II


    Sullydude



     

    Facebook
    Youtube
    Twitter
    Skype: Su11ydud3


     


    • Call of Duty: Black Ops II
    • Need for Speed World
    • Minecraft
    • Call of Duty: World at War
    • League of Legends








  14. #13
    gteuk's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    248
    Reputation
    15
    Thanks
    696
    it would have to be -1, I tried it once and it crashed so didn't bother again but I would assume the visual would also be poor

    timers work well with 500 at 100ms except for the little sprite things

  15. #14
    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 gteuk View Post
    little sprite things
    The facerapers ?
     

    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".

  16. #15
    lolbie's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Netherlands
    Posts
    5,207
    Reputation
    288
    Thanks
    2,136
    My Mood
    Angelic
    just learn how to use code injection no lag or timer bullshit

    much easier when you get it
    I love it when people keep their agreements /sarcasm ftw

  17. The Following User Says Thank You to lolbie For This Useful Post:

    Jorndel (12-27-2012)

Page 1 of 2 12 LastLast

Similar Threads

  1. Black Ops 2 - Leaked Screens and stuff (zombies)
    By Larity2056 in forum Call of Duty Black Ops 2 Discussions
    Replies: 0
    Last Post: 07-28-2012, 06:01 AM
  2. [Request]Zombie things and stuff
    By Battlepriest in forum Combat Arms Mod Request
    Replies: 7
    Last Post: 06-15-2010, 08:01 AM
  3. Stupid People Doing Stupid Stuff!
    By Dave84311 in forum General
    Replies: 9
    Last Post: 08-22-2007, 11:54 PM
  4. Where could I learn C++? (Beginner, and Advanced stuff)
    By TsumikiriX in forum C++/C Programming
    Replies: 8
    Last Post: 07-19-2006, 08:11 PM
  5. Korean Warrock Uboat And Other stuff :D
    By Kyojiro in forum WarRock - International Hacks
    Replies: 11
    Last Post: 01-19-2006, 02:56 PM