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 › Combat Arms Hacks & Cheats › How do u make a hack what program do u use????

How do u make a hack what program do u use????

Posts 1–14 of 14 · Page 1 of 1
PA
patrickpat
How do u make a hack what program do u use????
If anyone knows can u make a hack on a mac??





#1 · 17y ago
RY
Ryguy
im not sure but you use C++ to make hacks for CA
#2 · 17y ago
GOD
GOD
c++ ftw

good luck learning C++!
#3 · 17y ago
dk173
dk173
i would not run c++ on mac macs are not meant for gameing or runing say programs
#4 · 17y ago
Corndog
Corndog
you would use C++, but in order to make a program in it, you need a C++ compiler. which you can download from HERE (its the one in the yellow square). but trust me, its not as easy as it sounds...its not just like "command - Hack Engine.exe"
here's the code to a simple program that all it does is finds out the payment on a loan, the total interest over the lifetime of the loan, and the total amount you end up paying at the end of the loan. (took me 3 minutes to code just to show you how complicated C++ is)


Code:
// Payment Plan.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"


int _tmain(int argc, _TCHAR* argv[])
{
	return 0;
}
#include <iostream>
#include <cmath>
using namespace std;
int main() {
	double Principal, IntRate, PayPerYear, NumYears, Payment, numer, denom, b, e, TotalPay, Interest;
	
	cout << "Enter principal: ";
	cin >> Principal;

	cout << "Enter interest rate: ";
	cin >> IntRate;

	cout << "Enter number of payments per years: ";
	cin >> PayPerYear;

	cout << "enter number of years: ";
	cin >> NumYears;

	numer = IntRate * Principal / PayPerYear;

	e = -(PayPerYear * NumYears);
	b = (IntRate / PayPerYear) + 1;
	

	denom = 1 - pow(b, e);

	Payment = numer / denom;
	TotalPay = (Payment * NumYears) * PayPerYear;
	Interest = TotalPay - Principal;

	cout << "Payment is " << Payment;
	cout << "nTotal amount payed over lifetime of loan is: " << TotalPay;
	cout << "nTotal interest payed over lifetime of loan is: " << Interest;
	cout << "n";

	return 0;
}

HERE you can download a 12 chapter, 35 page per chapter, beginners guide to C++

i dont know much in the language, but im in like chapter 3 and i know how to do that...
#5 · 17y ago
LE
Legify
Quote Originally Posted by corndog5595 View Post
you would use C++, but in order to make a program in it, you need a C++ compiler. which you can download from HERE (its the one in the yellow square). but trust me, its not as easy as it sounds...its not just like "command - Hack Engine.exe"
here's the code to a simple program that all it does is finds out the payment on a loan, the total interest over the lifetime of the loan, and the total amount you end up paying at the end of the loan. (took me 3 minutes to code just to show you how complicated C++ is)


Code:
// Payment Plan.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"


int _tmain(int argc, _TCHAR* argv[])
{
	return 0;
}
#include <iostream>
#include <cmath>
using namespace std;
int main() {
	double Principal, IntRate, PayPerYear, NumYears, Payment, numer, denom, b, e, TotalPay, Interest;
	
	cout << "Enter principal: ";
	cin >> Principal;

	cout << "Enter interest rate: ";
	cin >> IntRate;

	cout << "Enter number of payments per years: ";
	cin >> PayPerYear;

	cout << "enter number of years: ";
	cin >> NumYears;

	numer = IntRate * Principal / PayPerYear;

	e = -(PayPerYear * NumYears);
	b = (IntRate / PayPerYear) + 1;
	

	denom = 1 - pow(b, e);

	Payment = numer / denom;
	TotalPay = (Payment * NumYears) * PayPerYear;
	Interest = TotalPay - Principal;

	cout << "Payment is " << Payment;
	cout << "nTotal amount payed over lifetime of loan is: " << TotalPay;
	cout << "nTotal interest payed over lifetime of loan is: " << Interest;
	cout << "n";

	return 0;
}

HERE you can download a 12 chapter, 35 page per chapter, beginners guide to C++

i dont know much in the language, but im in like chapter 3 and i know how to do that...
What he/she said.
#6 · edited 17y ago · 17y ago
Corndog
Corndog
Quote Originally Posted by Legify View Post
Looks like a bunch CopyPasta to me.
are you accusing me of getting a script offline and pasting in here claiming i know at least the tiniest amount of C++?
#7 · 17y ago
LE
Legify
Quote Originally Posted by corndog5595 View Post
are you accusing me of getting a script offline and pasting in here claiming i know at least the tiniest amount of C++?
No, Im just accusing you because I have no fuckin Idea how to post the "Code" box
Edit:
Code:
 NVM got it
#8 · 17y ago
Obama
Obama
Quote Originally Posted by corndog5595 View Post
are you accusing me of getting a script offline and pasting in here claiming i know at least the tiniest amount of C++?
Im accusing you of copy and paste.
#9 · 17y ago
LE
Legify
Quote Originally Posted by Obama View Post
Im accusing you of COPYPASTA!
I fixed it for you Obama.
#10 · 17y ago
foodman
foodman
I wonna learn C++ too but i dont wonna downlead all stuff and make my computer slow...
#11 · 17y ago
Corndog
Corndog
want proof that i know a little coding...ask me to do something simple that would probably not be online...

yeah...thats what i thought.
#12 · edited 17y ago · 17y ago
RE
RecoveryOne
Quote Originally Posted by corndog5595 View Post
you would use C++, but in order to make a program in it, you need a C++ compiler. which you can download from HERE (its the one in the yellow square). but trust me, its not as easy as it sounds...its not just like "command - Hack Engine.exe"
here's the code to a simple program that all it does is finds out the payment on a loan, the total interest over the lifetime of the loan, and the total amount you end up paying at the end of the loan. (took me 3 minutes to code just to show you how complicated C++ is)


Code:
// Payment Plan.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"


int _tmain(int argc, _TCHAR* argv[])
{
	return 0;
}
#include <iostream>
#include <cmath>
using namespace std;
int main() {
	double Principal, IntRate, PayPerYear, NumYears, Payment, numer, denom, b, e, TotalPay, Interest;
	
	cout << "Enter principal: ";
	cin >> Principal;

	cout << "Enter interest rate: ";
	cin >> IntRate;

	cout << "Enter number of payments per years: ";
	cin >> PayPerYear;

	cout << "enter number of years: ";
	cin >> NumYears;

	numer = IntRate * Principal / PayPerYear;

	e = -(PayPerYear * NumYears);
	b = (IntRate / PayPerYear) + 1;
	

	denom = 1 - pow(b, e);

	Payment = numer / denom;
	TotalPay = (Payment * NumYears) * PayPerYear;
	Interest = TotalPay - Principal;

	cout << "Payment is " << Payment;
	cout << "nTotal amount payed over lifetime of loan is: " << TotalPay;
	cout << "nTotal interest payed over lifetime of loan is: " << Interest;
	cout << "n";

	return 0;
}

HERE you can download a 12 chapter, 35 page per chapter, beginners guide to C++

i dont know much in the language, but im in like chapter 3 and i know how to do that...
Copypasta or not, I thank you for providing those links.
#13 · 17y ago
foodman
foodman
lol yes the links are very acurate, thank you.
#14 · 17y ago
Posts 1–14 of 14 · Page 1 of 1

Post a Reply

Similar Threads

  • how do i make a hack program?By dennis1018 in WarRock - International Hacks
    5Last post 17y ago
  • how can i make game hack?!!!!By UnknownID in General Game Hacking
    2Last post 20y ago
  • How can i make a hack for WarRock?By tomva in General Game Hacking
    4Last post 19y ago
  • How do you make warrock hacks??By araz in WarRock - International Hacks
    13Last post 18y ago
  • How do i make c++ hacks undetectable?By HackingIsMyLife in C++/C Programming
    1Last post 18y ago

Tags for this Thread

#question