Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    Coder.DiasII's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    In My World
    Posts
    1,515
    Reputation
    156
    Thanks
    6,462

    [WFEU] Base Simple + Adress 06\11

    NoFlash

    Code:
    #define NoFlash			0x00D9A86D

    Code:
    Bytes OFF: \x68\x7C\x28\x58\x01
    Bytes ON : \x68\x7C\x28\x58\x00
    Rapid Fire

    Code:
    #define RapidFire		0x0063FD1A
    Code:
    Bytes OFF: \x68\x38\x5D\x50\x01
    Bytes ON : \x68\x38\x5D\x50\x00
    to use the functions and need an address to disable anti cheat


    Code:
    #include <Windows.h>
    #include <stdio.h>
    #include <process.h>
    
    //Adress Warface EU
    #define RateofFireEU		0x0063FD1A//telemetry_getleaderboard
    #define NoFlashEU		0x00D9A86D//flashbangBaseTime
    
    VOID MemoryWrite(void *adr, void *ptr, int size)
    {
    	DWORD OldProtection;
    	VirtualProtect(adr, size, PAGE_EXECUTE_READWRITE, &OldProtection);
    	memcpy(adr, ptr, size);
    	VirtualProtect(adr, size, OldProtection, &OldProtection);
    }
    
    INT RapidFire, Flash;
    
    BOOL InGameLoad()
    {
    	return(
    		GetModuleHandleA("Game.exe") &&
    		GetModuleHandleA("CryOnline.dll") &&
    		GetModuleHandleA("ocevogyv.dll") ?
    		0 : 1);
    }
    
    VOID Hacks(LPVOID)
    {
    	if (GetAsyncKeyState(VK_INSERT) & 1)
    		RapidFire = !RapidFire;
    
    	if (RapidFire) {
    		MemoryWrite((void*) (RateofFireEU), "\x68\x38\x5D\x50\x01", 5);
    	} else {
    		MemoryWrite((void*) (RateofFireEU), "\x68\x38\x5D\x50\x00", 5);
    	}
    
    	if (GetAsyncKeyState(VK_HOME) & 1)
    		Flash = !Flash;
    
    	if (Flash) {
    		MemoryWrite((void*) (NoFlashEU), "\x68\x7C\x28\x58\x01", 5);
    	} else {
    		MemoryWrite((void*) (NoFlashEU), "\x68\x7C\x28\x58\x00", 5);
    	}
    }
    
    unsigned int __stdcall Hook(LPVOID)
    {
    	while (1)
    	{
    		while (!InGameLoad())
    			Sleep(100);
    		__asm   CALL Hacks;
    	}
    	return 0;
    }
    
    BOOL __stdcall DllMain(HINSTANCE hDll, LONG dwReason, VOID* lpReserved)
    {
    	if (dwReason == DLL_PROCESS_ATTACH)
    	{
    		_beginthreadex(0, 0, Hook, 0, 0, 0);
    	}
    	return 1;
    }

    Credits

    @ForeverRed <- This Source


    • Registered - February 03, 2012
    • Contributor since August 05, 2014



    CombatArms Brasil


    PointBlank Brasil


  2. The Following 6 Users Say Thank You to Coder.DiasII For This Useful Post:

    6ixth (06-11-2014),Fєηix (06-11-2014),geminisv300 (07-01-2014),ifk.ayam (06-27-2014),Janbavdaz1 (06-16-2014),shadow- (08-15-2014)

  3. #2
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,033
    Reputation
    661
    Thanks
    19,907
    Thanks for credits and GJ.

  4. #3
    Fєηix's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    Brαzil
    Posts
    1,178
    Reputation
    114
    Thanks
    6,891
    My Mood
    Sleepy
    Good Job
    Bitch <3

  5. The Following User Says Thank You to Fєηix For This Useful Post:

    ifk.ayam (06-27-2014)

  6. #4
    sunesko123's Avatar
    Join Date
    Nov 2013
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0
    Can you pelase send me video how to apply it?

  7. #5
    moneypulation's Avatar
    Join Date
    May 2014
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    2
    My Mood
    Aggressive
    What is this good for? Only disable anti cheat programm?

  8. #6
    alexeider22's Avatar
    Join Date
    May 2013
    Gender
    female
    Posts
    4
    Reputation
    10
    Thanks
    1
    Sry, but i dont know how to use it?
    Can anywhere tell me ,,How to use,,?
    PLS

  9. The Following User Says Thank You to alexeider22 For This Useful Post:

    Janbavdaz1 (06-16-2014)

  10. #7
    atailuh's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0
    sorry i dont get this

  11. #8
    mChaw243's Avatar
    Join Date
    Feb 2014
    Gender
    female
    Location
    wopsticks
    Posts
    246
    Reputation
    10
    Thanks
    1,983
    lol much noobies
    honestly just forget it.

  12. #9
    ifk.ayam's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    pls help me. should I copy all codes or just the last code???

  13. #10
    joli666's Avatar
    Join Date
    Sep 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Can you make a tutorial? i use visual studios can i just copy paste compile and run or not? i am still learning stuff..... i found out the code of warface.exe with ollydbg but i am still learning many things...and i also know how to work with cheat engine....
    Can you help with a tutorial plzz?

    Best regards

  14. #11
    moneypulation's Avatar
    Join Date
    May 2014
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    2
    My Mood
    Aggressive
    What kind of forum is this when nobody helps the beginners -.-

  15. #12
    Riddick's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    Delusional
    Posts
    7,704
    Reputation
    529
    Thanks
    5,193
    My Mood
    Devilish
    Quote Originally Posted by moneypulation View Post
    What kind of forum is this when nobody helps the beginners -.-
    It all depends on how busy the section is. This section is not a busy one so not many people frequent it.

  16. #13
    benog's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    20
    My Mood
    Cool
    There is a problem,codes are not working.Maybe I did something wrong
    Attached Thumbnails Attached Thumbnails
    Capture.JPG  


  17. The Following 11 Users Say Thank You to benog For This Useful Post:

    Bee Geeesy (08-17-2019),cyborge (09-15-2014),GaBoOn (08-24-2014),Janbavdaz1 (08-24-2014),marlodor96 (08-24-2014),Muri xD (07-07-2014),NiciTheKing (07-25-2014),ricsi84 (09-08-2014),robizvermkd (07-17-2014),tehpwnagekid (07-14-2014),waldagang (07-16-2014)

  18. #14
    benog's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    20
    My Mood
    Cool
    i bet this is c++,right,please help the noobies )))

  19. #15
    benog's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    20
    My Mood
    Cool
    what dafuq source code meanS?

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] Base Simples Update
    By Coder.DiasII in forum Combat Arms BR Hack Coding/Source Code
    Replies: 14
    Last Post: 05-06-2014, 05:19 PM
  2. [Source Code] Base Simples.
    By Fєηix in forum Combat Arms BR Hack Coding/Source Code
    Replies: 15
    Last Post: 11-06-2013, 12:07 PM
  3. [Source Code] Unknown.Coder Base Simples
    By Unknóia in forum Combat Arms BR Hack Coding/Source Code
    Replies: 18
    Last Post: 11-30-2012, 09:31 PM
  4. How to make a simple text based game in c++
    By VvITylerIvV in forum Programming Tutorials
    Replies: 13
    Last Post: 08-09-2010, 05:49 PM
  5. [RELEASE] some simple adresses...
    By naomelembro14 in forum WarRock - International Hacks
    Replies: 13
    Last Post: 05-21-2007, 01:54 PM