Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    proeggby's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    131
    Reputation
    10
    Thanks
    651
    My Mood
    Yeehaw

    Talking Weapon Array of Bytes(Speed and Damage)

    Hey guys, today im going to give my method to search the address of speed hack(could find the damage hack too) . Hope this thing could help you guys .

    P.S/ The value of the speedhack in double is "1E24"


    Code:
    B4 9D D9 79 43 78 EA 44 <-Change to this value(Speed) 
    
    Search array :) :
    
    PPSH41(3): 00 00 E0 40 00 00 02 44 00 00
    
    FragGrenade(5):00 00 A0 40 E3 38 09 44 39 8E
    
    MoneyBag: 00 00 F0 41 E3 38 09 44 00 00
    
    MP5: 00 00 00 E0 40 E3 38 FE 43 00
    
    HK416: 00 00 08 41 8F E3 DF 43 00 00
    
    Frag Grenade(No.5) : 00 00 A0 40 E3 38 09 44 39 8E
    
    Note: The address at below is arrange with the founded address :P
    
    Knife,
    Cleaver,
    Gold and Silver Dragon Blade,
    Chainsaw, 
    Police Baton 
    and Garena Exe: 00 00 20 41 AB AA 0A 44 00 00
    
    
    SSG82,
    GalilArtic,
    SSG82 Black: 00 00 10 41 1D C7 D5 43 00 00
    
    AWP Gold,
    AWP Black,
    AWP,
    Barret_M106,
    McMillan Unicorn,
    McMillan Cham,
    AWP Redstar,
    AWP Bluestar,
    M24 Heart,
    M24 Grim Reaper,
    AWP Black P,
    AWP Harimau,
    MSR,
    AWP TR,
    McMillan Tac-50 : 00 00 40 41 8F E3 DF 43 00 00
    
    
    M4 DGI-C,
    Type 89,
    M4 Desert,
    Type 89 Jungle,
    M16a1,
    M4a1,
    M4 Desert P,
    LWRC : 00 00 00 41 8F E3 DF 43 00 00
    Credits to: Cheat Engine,Astron51, and Me

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

    nikazizi97 (01-11-2016),Smoke (01-10-2016),turi1turi (01-27-2016),weelen11 (01-13-2016)

  3. #2
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    nice info you have
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  4. The Following User Says Thank You to COD3RIN For This Useful Post:

    balor8 (01-20-2016)

  5. #3
    Coder.Dash˛'s Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    Na Gandaia
    Posts
    91
    Reputation
    17
    Thanks
    669
    My Mood
    Aggressive
    have other simple method

    Code:
    8B 1D ?? ?? ?? ?? 8B 15 ?? ?? ?? ?? 8B ?? 8B 0C ?? 39 14 ?? 75 04 + 0x2 (after it take the value of address and convert to hexadecimal) 
    // Credtis to @Coder.Dash˛
    this will find the address of weaponmgr. you can pointer and access the speed hack.
    this signature work on BSEU and BSSEA
    Last edited by Coder.Dash˛; 01-10-2016 at 11:56 AM.

  6. The Following User Says Thank You to Coder.Dash˛ For This Useful Post:

    5clemax5 (01-24-2016)

  7. #4
    proeggby's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    131
    Reputation
    10
    Thanks
    651
    My Mood
    Yeehaw
    Quote Originally Posted by Coder.Dash˛ View Post
    have other simple method

    Code:
    8B 1D ?? ?? ?? ?? 8B 15 ?? ?? ?? ?? 8B ?? 8B 0C ?? 39 14 ?? 75 04 + 0x2 (after it take the value of address and convert to hexadecimal) 
    // Credtis to @Coder.Dash˛
    this will find the address of weaponmgr. you can pointer and access the speed hack.
    this signature work on BSEU and BSSEA
    Nice one. Btw , im trying creating one of the damage hack. but still can't found the solution to make it undetected T_T

  8. #5
    Coder.Dash˛'s Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    Na Gandaia
    Posts
    91
    Reputation
    17
    Thanks
    669
    My Mood
    Aggressive
    try use it
    Code:
    #include "windows.h"
    #define WeaponMGR 0x997284
    
    DWORD WINAPI Cheats(LPVOID)
    {
    	while (*(DWORD*)WeaponMGR != 0)
    	{
    Your Cheats here;
            }
    }
    
    BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
    {
    	DisableThreadLibraryCalls(hDll);
    
    	{
    		CreateThread(0, 0, Cheats, 0, 0, 0);
    	}
    	return 1;
    }
    @proeggby
    Last edited by Coder.Dash˛; 01-10-2016 at 01:14 PM.

  9. The Following User Says Thank You to Coder.Dash˛ For This Useful Post:

    Obliteration (01-11-2016)

  10. #6
    weelen11's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    95
    Reputation
    10
    Thanks
    12
    Quote Originally Posted by proeggby View Post
    Hey guys, today im going to give my method to search the address of speed hack(could find the damage hack too) . Hope this thing could help you guys .

    P.S/ The value of the speedhack in double is "1E24"


    Code:
    B4 9D D9 79 43 78 EA 44 <-Change to this value(Speed) 
    
    Search array :) :
    
    PPSH41(3): 00 00 E0 40 00 00 02 44 00 00
    
    FragGrenade(5):00 00 A0 40 E3 38 09 44 39 8E
    
    MoneyBag: 00 00 F0 41 E3 38 09 44 00 00
    
    MP5: 00 00 00 E0 40 E3 38 FE 43 00
    
    HK416: 00 00 08 41 8F E3 DF 43 00 00
    
    Frag Grenade(No.5) : 00 00 A0 40 E3 38 09 44 39 8E
    
    Note: The address at below is arrange with the founded address :P
    
    Knife,
    Cleaver,
    Gold and Silver Dragon Blade,
    Chainsaw, 
    Police Baton 
    and Garena Exe: 00 00 20 41 AB AA 0A 44 00 00
    
    
    SSG82,
    GalilArtic,
    SSG82 Black: 00 00 10 41 1D C7 D5 43 00 00
    
    AWP Gold,
    AWP Black,
    AWP,
    Barret_M106,
    McMillan Unicorn,
    McMillan Cham,
    AWP Redstar,
    AWP Bluestar,
    M24 Heart,
    M24 Grim Reaper,
    AWP Black P,
    AWP Harimau,
    MSR,
    AWP TR,
    McMillan Tac-50 : 00 00 40 41 8F E3 DF 43 00 00
    
    
    M4 DGI-C,
    Type 89,
    M4 Desert,
    Type 89 Jungle,
    M16a1,
    M4a1,
    M4 Desert P,
    LWRC : 00 00 00 41 8F E3 DF 43 00 00
    Credits to: Cheat Engine,Astron51, and Me
    After scan the address where i need to paste the speed code or replace?

  11. #7
    [CODERMASTER]'s Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    In The Back Of Bed
    Posts
    4
    Reputation
    10
    Thanks
    438
    My Mood
    Hungover
    Make Tutorial Video
    CODERMASTER



  12. The Following User Says Thank You to [CODERMASTER] For This Useful Post:

    weelen11 (01-13-2016)

  13. #8
    KKrysis˛'s Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Dildo™
    Posts
    1,166
    Reputation
    10
    Thanks
    2,830
    My Mood
    Inspired
    Just make a dll using these codes

  14. The Following User Says Thank You to KKrysis˛ For This Useful Post:

    weelen11 (01-13-2016)

  15. #9
    weelen11's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    95
    Reputation
    10
    Thanks
    12
    Quote Originally Posted by jeyenchen View Post
    Just make a dll using these codes
    Can you help to make?

  16. #10
    proeggby's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    131
    Reputation
    10
    Thanks
    651
    My Mood
    Yeehaw
    Quote Originally Posted by [CODERMASTER] View Post
    Make Tutorial Video
    I can't make it now.. Im at my village, hard to find a signal here

  17. #11
    [CODERMASTER]'s Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    In The Back Of Bed
    Posts
    4
    Reputation
    10
    Thanks
    438
    My Mood
    Hungover
    Quote Originally Posted by proeggby View Post
    I can't make it now.. Im at my village, hard to find a signal here
    later..this code to create .dll or ce
    CODERMASTER



  18. The Following User Says Thank You to [CODERMASTER] For This Useful Post:

    weelen11 (01-13-2016)

  19. #12
    KKrysis˛'s Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Dildo™
    Posts
    1,166
    Reputation
    10
    Thanks
    2,830
    My Mood
    Inspired
    If for ce, just copy n paste, if for dll, nid to find pointers and offsets

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

    weelen11 (01-14-2016)

  21. #13
    weelen11's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    95
    Reputation
    10
    Thanks
    12
    Quote Originally Posted by jeyenchen View Post
    If for ce, just copy n paste, if for dll, nid to find pointers and offsets
    Can you teach me how to copy and paste the code? Tutorial video can????cause i can't understand...

  22. #14
    syamil019's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    1
    My Mood
    Angry
    tutorial plss

  23. #15
    turi1turi's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    10
    really helpfull anymore code? maybe mastery, change weapon to melee and so on?
    thanks again

Page 1 of 2 12 LastLast

Similar Threads

  1. [Discussion] Speed hack and damage remover hack.
    By DutchAirForce in forum War Thunder Hacks & Cheats
    Replies: 69
    Last Post: 02-13-2015, 10:26 AM
  2. How to get the Speed and Weapon Hack to work (PUB)
    By Black0ut077 in forum CrossFire Hacks & Cheats
    Replies: 8
    Last Post: 10-14-2009, 04:32 PM
  3. speed and weapon hack GEDD NED !!
    By Dekiii in forum CrossFire Hacks & Cheats
    Replies: 9
    Last Post: 08-02-2009, 08:39 PM
  4. speed and weapon hack (knifehack??)
    By Dekiii in forum CrossFire Hacks & Cheats
    Replies: 1
    Last Post: 07-30-2009, 04:40 PM
  5. speed and weapon hack
    By Dekiii in forum CrossFire Hacks & Cheats
    Replies: 3
    Last Post: 07-30-2009, 04:13 PM