[WF-BR] Infinity Bullets

Posts 114 of 14 · Page 1 of 1
[WF-BR] Infinity Bullets
I don't know if this was already posted, was playing in the game today and find these address
Infinity Bullets
Code:
00DEA3EF
Infinity AMMO Bag
Code:
00DE9582
For active all hacks in this post change 75 to 74
did not get to test long time, the first hack can be visual
Credits: Coder.Dash
@Coder.Dias //for having asked me to mess with the game
Quote Originally Posted by Coder.Dash View Post
I don't know if this was already posted, was playing in the game today and find these address
Infinity Bullets
Code:
00DEA3EF
Infinity AMMO Bag
Code:
00DE9582
For active all hacks in this post change 75 to 74
did not get to test long time, the first hack can be visual
Credits: Coder.Dash
@Coder.Dias //for having asked me to mess with the game
at least explain how to use it
Quote Originally Posted by piramitender View Post
at least explain how to use it
Ex:

Code:
#include <Windows.h>
#include <process.h>

//Variable
INT Cheat[100];

//Address
#define Ammo 0x00DE9582

VOID Cheats()
{
	if(GetAsyncKeyState(VK_F2)&1) Cheat[0] = ! Cheat[0];	

	if(Cheat[0])
	{
		//Code
	}
}

UINT WINAPI Main(LPVOID)
{
   while(TRUE)
   {   
	  while(!(DWORD)GetModuleHandleA("Game.exe"))
		    Sleep(250);

      __asm
	  {
	     CALL[Cheats]; 
	  }
Sleep(250);
   }
	return FALSE;	
}

BOOL APIENTRY DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpReserved)
{
	DisableThreadLibraryCalls(hModule);
	if(dwReason == DLL_PROCESS_ATTACH) 
	{
		_beginthreadex(NULL, NULL, &Main, NULL, NULL, NULL);
	}
	return TRUE;
}
Quote Originally Posted by Coder.Dash View Post
I don't know if this was already posted, was playing in the game today and find these address
Infinity Bullets
Code:
00DEA3EF
Infinity AMMO Bag
Code:
00DE9582
For active all hacks in this post change 75 to 74
did not get to test long time, the first hack can be visual
Credits: Coder.Dash
@Coder.Dias //for having asked me to mess with the game
I go see !

Nice ! Thank for sharing !
First of all thx
secondly how do you use it ? CE?
Quote Originally Posted by Dodido4 View Post
First of all thx
secondly how do you use it ? CE?
No, C++ (Programming language).
Quote Originally Posted by Dodido4 View Post
First of all thx
secondly how do you use it ? CE?
Code:
#include "Tools.h"

Tools* sTools;
Variables sVars;

#define Recoil      0x104476E//rcl_att
#define Flash      0xBE651D//flashbangBaseTime
#define SwayX      0x1044F6B//sway_max_x
#define SwayY      0x1044D80//sway_min_y
#define RateofFire  0x732E54//telemetry_getleaderboard

HRESULT APIENTRY Functions ()
{
   while(1)
   {
      if(sVars.NoFlash)
      {
         sTools->MemoryWrite((void*)(Flash),(void*)(PBYTE)"\x68\x28\xDC\x52\x00", 5);
      }else{
         sTools->MemoryWrite((void*)(Flash),(void*)(PBYTE)"\x68\x28\xDC\x52\x01", 5);
      }

      if(sVars.NoRecoil)
      {
         sTools->MemoryWrite((void*)(Recoil),(void*)(PBYTE)"\x68\xC8\xBB\x56\x00", 5);
      }else{
         sTools->MemoryWrite((void*)(Recoil),(void*)(PBYTE)"\x68\xC8\xBB\x56\x01", 5);
      }

      if(sVars.RapidFire)
      {
         sTools->MemoryWrite((void*)(RateofFire),(void*)(PBYTE)"\x68\xA4\xE8\x4C\x00", 5);
      }else{
         sTools->MemoryWrite((void*)(RateofFire),(void*)(PBYTE)"\x68\xA4\xE8\x4C\x01", 5);
      }

      if(sVars.NoSway)
      {
         sTools->MemoryWrite((void*)(SwayX),(void*)(PBYTE)"\x68\xE4\xBB\x56\x00", 5);
         sTools->MemoryWrite((void*)(SwayY),(void*)(PBYTE)"\x68\xFC\xBB\x56\x00", 5);
      }else{
         sTools->MemoryWrite((void*)(SwayY),(void*)(PBYTE)"\x68\xFC\xBB\x56\x01", 5);
         sTools->MemoryWrite((void*)(SwayX),(void*)(PBYTE)"\x68\xE4\xBB\x56\x01", 5);
      }
   }
   return true;
}
That help you a lot time

Credit: Coder.Dias
How do we use ? c ++ language'm sorry I do not have any information about Can you tell ? PLEASE !!!!:!!:!:!:!:!:!:
Quote Originally Posted by Cryteck123 View Post
How do we use ? c ++ language'm sorry I do not have any information about Can you tell ? PLEASE !!!!:!!:!:!:!:!:!:
You you need make a new projet with peer exemple: Microsoft Visual C++ 2010 express (selecte new projet win 32) in the setting select empty file and .dll

and make a new file with name: mains.cpp and after copy and paste this code ...
Someone actually explain how this is all done and where you put these files instead of leaving a comment with little detail as possible... There are a lot of noobs here who do not understand and they would like a small easy installation
i am so noob at this things so i don't get it too..i hope he reply or anybody
Nice share.
Oh !

It's only visual bro ?
how can i use it ??? no C++
Posts 114 of 14 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?