Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 54
  1. #16
    gerherhtherherdhher's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    171
    Reputation
    26
    Thanks
    900
    My Mood
    Sad
    Quote Originally Posted by _KYOO_ View Post
    I am new to C++ I was doing research and it said the values can't be changed as they're encrypted. I am listening to others sources and knowledge even if they're incorrect how am I suppose to know?
    Well, my suggestion would be to make sure your sources are trustworthy. If you are not sure about something ask people that know what they are talking about.

    Now to your "issue": My guess would be that you found the player_burstFireCooldown dvar. When trying to change it's value you probably set the type to 4 bytes in Cheat Engine. That's gonna show you a weird value because the dvar is of type float (which might have looked like it is encrypted to you, but that's simply what happens when reinterpreting a float as an int). Try changing the type to float instead of 4 bytes.

    Also, I am planning on releasing the addresses of all existent dvars in mw2 today, so keep your eyes open
    Last edited by gerherhtherherdhher; 06-19-2016 at 04:26 PM.

  2. The Following 2 Users Say Thank You to gerherhtherherdhher For This Useful Post:

    Kid a (06-19-2016),_KYOO_ (06-19-2016)

  3. #17
    _KYOO_'s Avatar
    Join Date
    Jun 2016
    Gender
    male
    Location
    Nottinghamshire, UK
    Posts
    55
    Reputation
    10
    Thanks
    721
    My Mood
    Bored
    Quote Originally Posted by __Xen0 View Post
    Well, my suggestion would be to make sure your sources are trustworthy. If you are not sure about something ask people that know what they are talking about.

    Now to your "issue": My guess would be that you found the player_burstFireCooldown dvar. When trying to change it's value you probably set the type to 4 bytes in Cheat Engine. That's gonna show you a weird value because the dvar is of type float. Try changing the type to float instead of 4 bytes.

    Also, I am planning on releasing the addresses of all existent dvars in mw2, so keep your eyes open
    Thank you man, yeah I search for all my addresses (float) I found the value but it keeps changing so i'm guessing I do a pointer scan for this address?

  4. #18
    gerherhtherherdhher's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    171
    Reputation
    26
    Thanks
    900
    My Mood
    Sad
    Quote Originally Posted by _KYOO_ View Post
    Thank you man, yeah I search for all my addresses (float) I found the value but it keeps changing so i'm guessing I do a pointer scan for this address?
    No, you probably found the wrong address then. I'll be on my computer in about half an hour, then I can tell you the correct address. Pointer scans are only useful when you found something that is dynamically allocated, which is not the case for dvars.

    (Although I still remember an occasion where the address of a dvar was different on someone elses computer, that's why I always recommend finding the address of the dvar pointer)

  5. The Following 2 Users Say Thank You to gerherhtherherdhher For This Useful Post:

    Kid a (06-19-2016),_KYOO_ (06-19-2016)

  6. #19
    _KYOO_'s Avatar
    Join Date
    Jun 2016
    Gender
    male
    Location
    Nottinghamshire, UK
    Posts
    55
    Reputation
    10
    Thanks
    721
    My Mood
    Bored
    Quote Originally Posted by __Xen0 View Post
    No, you probably found the wrong address then. I'll be on my computer in about half an hour, then I can tell you the correct address. Pointer scans are only useful when you found something that is dynamically allocated, which is not the case for dvars.

    (Although I still remember an occasion where the address of a dvar was different on someone elses computer, that's why I always recommend finding the address of the dvar pointer)
    Thanks a lot man, you have Skype?

  7. #20
    gerherhtherherdhher's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    171
    Reputation
    26
    Thanks
    900
    My Mood
    Sad
    Quote Originally Posted by _KYOO_ View Post
    Thanks a lot man, you have Skype?
    Yes, I sent you a pm!

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

    _KYOO_ (06-19-2016)

  9. #21
    GemDG's Avatar
    Join Date
    Nov 2011
    Gender
    female
    Location
    Pandora
    Posts
    138
    Reputation
    10
    Thanks
    15
    My Mood
    Amused
    Hey how do I make the XP lobby thing unlimited, everytime someone makes a kill the game ends.

  10. #22
    gerherhtherherdhher's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    171
    Reputation
    26
    Thanks
    900
    My Mood
    Sad
    Quote Originally Posted by GemDG View Post
    Hey how do I make the XP lobby thing unlimited, everytime someone makes a kill the game ends.
    Never tried that, but can't you change the limit to unlimited in the private match options? However I can host real unlock all lobbies, anyone can add me If I should host one (https://steamcommunity.com/profiles/76561198115079009/)

  11. The Following User Says Thank You to gerherhtherherdhher For This Useful Post:

    _KYOO_ (06-19-2016)

  12. #23
    _KYOO_'s Avatar
    Join Date
    Jun 2016
    Gender
    male
    Location
    Nottinghamshire, UK
    Posts
    55
    Reputation
    10
    Thanks
    721
    My Mood
    Bored
    Quote Originally Posted by GemDG View Post
    Hey how do I make the XP lobby thing unlimited, everytime someone makes a kill the game ends.
    Once game has started = scr_dm_scorelimit 0;scr_dm_timelimit 0

    Level 70:
    Code:
    set scr_givexp 2516000;set scr_set_rank 70;ui_promotion 70;uploadStats

    Unlock Challenges:
    Code:
    scr_complete_all_challenges 1;uploadStats

    Score Stats:
    Code:
    statset 2302 666666666;onlinegame 1;uploadstats;

    Win Stats:
    Code:
    statset 2316 66666666;onlinegame 1;uploadstats;

    Kill Stats
    Code:
    statset 2303 66666666;onlinegame 1;uploadstats;

    Prestige 10:
    Code:
    statset 2326 10;onlinegame 1;uploadstats;

    Prestige 11:
    Code:
    statset 2326 11;onlinegame 1;uploadstats;


    Have fun
    Last edited by _KYOO_; 06-19-2016 at 06:26 PM.

  13. #24
    GemDG's Avatar
    Join Date
    Nov 2011
    Gender
    female
    Location
    Pandora
    Posts
    138
    Reputation
    10
    Thanks
    15
    My Mood
    Amused
    Quote Originally Posted by _KYOO_ View Post
    Once game has started = scr_dm_scorelimit 0;scr_dm_timelimit 0

    Have fun
    Just found out people are not getting any XP in private lobby with the DVAR on

    - - - Updated - - -

    Quote Originally Posted by __Xen0 View Post
    Never tried that, but can't you change the limit to unlimited in the private match options? However I can host real unlock all lobbies, anyone can add me If I should host one (https://steamcommunity.com/profiles/76561198115079009/)
    Lmao stay a douche and keep your Little "private" stuff to yourself, Be useful for the community and not just for yourself.

  14. #25
    _KYOO_'s Avatar
    Join Date
    Jun 2016
    Gender
    male
    Location
    Nottinghamshire, UK
    Posts
    55
    Reputation
    10
    Thanks
    721
    My Mood
    Bored
    Quote Originally Posted by GemDG View Post
    Just found out people are not getting any XP in private lobby with the DVAR on

    - - - Updated - - -



    Lmao stay a douche and keep your Little "private" stuff to yourself, Be useful for the community and not just for yourself.
    _Xen0 is cool man, you need to use Lobby Tools and go in private match hit f5 to make it public then f3 force start.

  15. #26
    gerherhtherherdhher's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    171
    Reputation
    26
    Thanks
    900
    My Mood
    Sad
    Quote Originally Posted by GemDG View Post
    Just found out people are not getting any XP in private lobby with the DVAR on

    - - - Updated - - -



    Lmao stay a douche and keep your Little "private" stuff to yourself, Be useful for the community and not just for yourself.
    Just because you don't know anything about coding/reversing doesn't mean others have to give you their stuff for free. I released some of my stuff too, including bots, external console, golden deagle, all commands and dvars. Don't you use my console every time you play? So show some respect and gratitude.
    Last edited by gerherhtherherdhher; 06-19-2016 at 08:01 PM.

  16. The Following User Says Thank You to gerherhtherherdhher For This Useful Post:

    _KYOO_ (06-19-2016)

  17. #27
    dickcheeseinurmouth's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    Cant download help?

  18. #28
    GemDG's Avatar
    Join Date
    Nov 2011
    Gender
    female
    Location
    Pandora
    Posts
    138
    Reputation
    10
    Thanks
    15
    My Mood
    Amused
    Quote Originally Posted by __Xen0 View Post
    Just because you don't know anything about coding/reversing doesn't mean other have to give you their stuff for free. I released some of my stuff too, including bots, external console, golden deagle, all commands and dvars. Don't you use my console every time you play? So show some respect and gratitude.
    Dude i offered money don't come bullshitting about giving something free. and no i do not use any of your "hacks"

  19. #29
    gerherhtherherdhher's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    171
    Reputation
    26
    Thanks
    900
    My Mood
    Sad
    Quote Originally Posted by GemDG View Post
    Dude i offered money don't come bullshitting about giving something free. and no i do not use any of your "hacks"
    lol, I don't recall you offering me money. Also I didn't release any "hacks" on this website. You 100% used Scoudems lobby tools which include my console and it wouldn't surprise me if you also used my bots.

  20. The Following User Says Thank You to gerherhtherherdhher For This Useful Post:

    _KYOO_ (06-19-2016)

  21. #30
    GemDG's Avatar
    Join Date
    Nov 2011
    Gender
    female
    Location
    Pandora
    Posts
    138
    Reputation
    10
    Thanks
    15
    My Mood
    Amused
    Quote Originally Posted by __Xen0 View Post
    lol, I don't recall you offering me money. Also I didn't release any "hacks" on this website. You 100% used Scoudems lobby tools which include my console and it wouldn't surprise me if you also used my bots.
    So you're not Xen0 who was talking to someone named Private Twinkeltoes on steam? And no I do not use your bots since I don't need them

Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [Outdated] KYOO TABLE V1
    By _KYOO_ in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 19
    Last Post: 06-20-2016, 04:36 PM
  2. [Patched] UPDATE - New EXP Hack table + Tutorial video.
    By ccman32 in forum Alliance of Valiant Arms (AVA) Hacks & Cheats
    Replies: 49
    Last Post: 10-13-2012, 01:17 PM
  3. Borderlands Cheat table [UpDated + golden keys]
    By Atari1337 in forum Borderlands 2 Hacks
    Replies: 23
    Last Post: 09-27-2012, 09:51 PM
  4. [Patched] *Update* Release Cheat Engine Table V3
    By Linux38 in forum Counter-Strike 2 Hacks
    Replies: 24
    Last Post: 02-15-2012, 08:10 AM
  5. [RELEASE] Comabt Arms UCE Table (UPDATED)
    By pownage017 in forum Combat Arms Hacks & Cheats
    Replies: 96
    Last Post: 08-21-2008, 09:01 PM

Tags for this Thread