Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Other Semi-Popular First Person Shooter Hacks › Warface Hacks & Cheats › Warface Coding & Source Code › [WF-BR] Some Functions

[WF-BR] Some Functions

Posts 1–15 of 22 · Page 1 of 2
Jackal-
Jackal-
[WF-BR] Some Functions
You will go need deactivate AntiCheat

Tools.h


Code:
#pragma once

#include <Windows.h>
#include <stdlib.h>

class Tools;

class Tools
{
public:
   void MemoryWrite(void *adr, void *ptr, int size);
};

struct Variables
{
   int RapidFire, NoRecoil, NoFlash, NoSway;
};
extern Variables sVars;

void Tools::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);
}
Functions.h


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;
}
Simple Base Hotkey By ForeverRed for create your hack : http://pastebin.com/GqQVqVcu

Credits

@Jackal
@Coder.Dias
Status2
Wilde
#1 · 12y ago
Fєηix
Fєηix
Gook Work
Thanks For Sharing
#2 · 12y ago
Coder.DiasII
Coder.DiasII
Gook Work Man
#3 · 12y ago
cvrl
cvrl
create a DIP (drawindexedprimitive) and paste code only ?
and how to disable anti cheat the game?

noob questions... thanks
#4 · 12y ago
AS
asswipe666
I wanna know how to disable anti cheat to. I have the dumped game.exe but I dunno how to open it. lots of dll's are missing like cryonline.dll, etc. can someone tell me what to do pls.
#5 · 12y ago
AX
Axel59
Thanks you , how launche ?
#6 · 12y ago
benog
benog
is it working on warface eu?
#7 · 12y ago
KE
KevinChan1994
How to avoid being checked by anti cheat system ?? Please share it to me !! !!!
#8 · 12y ago
AC
acclucas
This wont help without a more detailed tutorial =/
#9 · 12y ago
benog
benog
Those 2 are headers,right?
#10 · 12y ago
benog
benog
how do i create dip in main.cpp in visual studio 2013?
i searched on google and i found some helpfrom microsoft dev
but idont understand anything
#11 · 12y ago
Rhyveeo
Rhyveeo
How do you use all of this?
#12 · 12y ago
Mayion
[MPGH]Mayion
Quote Originally Posted by Rhyveeo View Post
How do you use all of this?
Learn C++ and you will know how to use the code.
#13 · 12y ago
XD
xdominox
This is DLL? I will injector used but not work? Maybe i do not right work, please tell me some, i using codeblock
#14 · 12y ago
Mayion
[MPGH]Mayion
Quote Originally Posted by xdominox View Post
This is DLL? I will injector used but not work? Maybe i do not right work, please tell me some, i using codeblock
It's not just C+Ping the code in C++/CodeBlock.
First, you have to update the addies/address then bypass the anti-cheat system.
#15 · 12y ago
Posts 1–15 of 22 · Page 1 of 2

Post a Reply

Similar Threads

  • [Tut] Some Functions for D3DBy Offbeat Ninja in Combat Arms Hack Coding / Programming / Source Code
    16Last post 16y ago
  • Some functionsBy JamesRo in Oversoul Hacks / Cheats / Trainers
    7Last post 13y ago
  • Some Functions + Addy (MGAME)By schaapjes in Operation 7 Hacks
    31Last post 13y ago
  • [SOLVED] [HELP] Little Server Tool - some functions not availableBy nesakysiu in Call of Duty Modern Warfare 2 Help
    6Last post 16y ago
  • Some functions are corrupted. Pleaaase helpBy kai.feat.lars in CrossFire Help
    2Last post 15y ago

Tags for this Thread

None