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 › Programming › C++/C Programming › Searching C++ Coder for small project

LightbulbSearching C++ Coder for small project

Posts 1–3 of 3 · Page 1 of 1
IW
iWnnaFckMyDad
Searching C++ Coder for small project
Hello.

I'm looking for a coder who can make me a program - which freezes the contracts in FIFA Ultimate Team. I have a tutorial on how to do it manually, but it would be nice if someone is able to put in in a program, so the freeze hasn't got to be done over and over again.

Message me here or via Skype (schimmler2012) for the details.

I would also pay a little fee for good work.
#1 · 13y ago
aIW|Convery
aIW|Convery
Just pick up a C++ compiler and have fun..

Code:
// Convery

#include <Windows.h>

// Change the window name and the address to freeze.
#define WINDOWNAME "FIFA Ultimate Team"
#define ADDRESS 0xfffff

HWND hwnd;
HANDLE Process;
DWORD ProcessID;
DWORD Value;

int main(int argc, char *argv[])
{
	while(!(hwnd = FindWindow(NULL, WINDOWNAME)))
          Sleep(10);
		  
	while(!(GetWindowThreadProcessId(hwnd,&ProcessID)))
          Sleep(10);	  
		  
	while(!(Process = OpenProcess(PROCESS_ALL_ACCESS,false,ProcessID)))
          Sleep(10);

	SetForegroundWindow(hwnd);
	
	ReadProcessMemory(Process, (void *) ADDRESS, &Value, 4, NULL);
	
	while(true)
	{
		WriteProcessMemory(Process, (void *) ADDRESS, &Value, 4, NULL);
		Sleep(100);
	}

	return 1;
}
#2 · edited 13y ago · 13y ago
abuckau907
abuckau907
That's basically what he did, but didn't have a static address. In fact he has 12 addr, 1 for each player

We just nopped the game_code that decreases # of contracts. For UT, thank goodness it was only 1 game_code address.
(vb.net code: sry)
Code:
    Private gc_modify_contracts1 As IntPtr  // = Cardz.dll + offset
    Private gc_modify_contract1_offset = &H87BDB
Patch
Code:
  If MemMgr.IsAttachedToProcess Then
            Dim _nopBytes() As Byte = New Byte() {&H90, &H90, &H90} '' 3 nop bytes
            gc_modify_contracts1_orig_code = MemMgr.ReadBytes(gc_modify_contracts1, 3) '' backup orig. data for later (to un-patch)
            ''Patch first addr
            If MemMgr.WriteBytes(gc_modify_contracts1, _nopBytes) Then '
                'success patch 1
                DoOutput("Patch 1: APPLIED SUCCESS")
            Else
                'fail patch 1
                DoOutput("Patch 1: FAIL. Unknown Error.")
            End If
  Else
  MessageBox.Show(dohMsg, "u no?")
  End If
Un-Patch
Code:
  If MemMgr.IsAttachedToProcess Then
        MemMgr.WriteBytes(gc_modify_contracts1, gc_modify_contracts1_orig_code)
        DoOutput("Un-Patched OK")
  Else
        DoOutput("Not attached to game: Unable to 'un-patch' at this time.")
  End If

Anyway,

RESOLVED.
#3 · edited 13y ago · 13y ago
Posts 1–3 of 3 · Page 1 of 1

Post a Reply

Similar Threads

  • LOOKING FOR CODERS FOR SUPER PROJECT!By W()()T in Combat Arms Discussions
    6Last post 16y ago
  • I need a coder for a project of mineBy cncviking in Coders Lounge
    2Last post 13y ago
  • Need coders for a projectBy ♪~ ᕕ(ᐛ)ᕗ in Visual Basic Programming
    54Last post 15y ago
  • Search Coder for New AimbotBy SyXcho in CrossFire Hacks & Cheats
    8Last post 16y ago
  • Search AWM RETAIL FOR 30$By Tala in Trade Accounts/Keys/Items
    2Last post 18y ago

Tags for this Thread

None