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 › CrossFire Hacks & Cheats › CrossFire Hack Coding / Programming / Source Code › need help with coding vip console

need help with coding vip console

Posts 1–14 of 14 · Page 1 of 1
GE
GER-Domi.
need help with coding vip console
hi guis i code a vip console who show me the address of senkeys from visual basic menue > simple method to make d3d menue without bypass

can someone edit my code please :
- if i give in a address the and press enter the screen is clean but i can make it only 1 times becouse after it says "press any key" then it is close .. what can i do?

Code:
#include <iostream>

using namespace std;


int main()
{
	float  address;
	cin  >>  address;
	system ("CLS");
    
		system("pause");
	return 0;
}
#1 · 16y ago
MiNT
MiNT
ill help you but i need to know what you want lol.

from what i see is that this is a console application that asks the person for the input of a floating value, then it clears the screen and asks the person for press any key to continue and in this case exit because the return 0 is right after the system("pause");
#2 · 16y ago
GE
GER-Domi.
Hmmm ok i will try it without return 0 ( i will show you all what i mean later! ) becouse i hate z8games > they spy out our codes
#3 · 16y ago
MiNT
MiNT
lol DONT TAKE THE >>return 0;<< OUT !! your return type is int .. so you will get a compiler error, unless you change it to >>void<< main

well PM me your msn/yahoo/skype or wt ever u use to talk and it would be easier.
#4 · 16y ago
GE
GER-Domi.
ok i explane now >

i need a console:

i used this code for a console but there is a loop missing and i don t know how to code a loop > becouse i m still learning c++ someone have to edit this code and add a loop

Code:
#include <iostream>

using namespace std;

int main()

{
    float address;
	cin >> address;

		system("pause");
}
what the programm have to do:
- if i type a adress like this in it: 0x97342 and i press enter the console have to be empty and ... i can do it again.. type a adress in it and if i press enter again its empty again. <<< please add this on the code
#5 · 16y ago
bandi94
bandi94
Haha you start code a vip hack and you now learning c++ haha and what you make whit your vip sell for 20$ haaha lol learn all of c++ and after start coding vip =))
#6 · 16y ago
lauwy
lauwy
system ("CLS"); = clean every thing in the window :P

You mean:

Code:
#include <iostream>

using namespace std;

int main()   {
    float address;
    While(true) {
       system("cls");
       cin >> address;
       cout << address;
    }
    system("pause");
}
But saving a address in a float?

And how do you want to put this in crossfire?
#7 · edited 16y ago · 16y ago
MiNT
MiNT
-.- you cant save an address into a float and expect to be able to add it into the game, in the game engine its saved as integer, lol lauwly, you released a version of cheat engine.. you should have noticed that you are looking and finding things as an integer. the address it self is made up of a hexadecimal string

here is an edit to lauwly's code
Code:
#include <iostream>
#include <string>
#include <stdlib.h>
using namespace std;
int main ()
{
     string address;
     while(1)
     {
          cout << "input an address : ";
          cin >> address;
          cout << "\nthe address you just gave me is : " << address;
          system("pause");
          system("CLS");
     }
return 0;
}
#8 · edited 16y ago · 16y ago
GE
GER-Domi.
---# request CLOSE!---
i have now the right one,.. mahetamim helped me successfull! thx to lauwy too!
but it is not the same code as the posted codes xD,.. i only edit both and add it together
#9 · 16y ago
lauwy
lauwy
look @ my command:

But saving a address in a float?

#10 · 16y ago
MiNT
MiNT
Quote Originally Posted by lauwy View Post
look @ my command:

But saving a address in a float?

huh ? lol
wt i tried to say is an address MOST of the time contains charecters other than numbers in it, like 1002BAC2. that address CANNOT BE SAVED IN A FLOAT, if you do, what you compiler will do is convert the letters into valid floating point types from this table http://www.hobbyprojects.com/ascii-t...cii-table1.gif and store them into the float address, or it will NOT except those charecters or letters as a part of the float and will forget about them (depends on your compiler).

what i mean is, if you put an address into this program
Code:
#include <iostream>
#include <stdlib.h>
using namespace std;

void main()
{
	while (1)
	{
		float address;
		cout << "input an address : ";
		cin >> address;
		cout << "here is the address you just typed : " << address << "\n\n" ;
		system("pause");
		system("CLS");
		fflush(stdin);
	}
}
this is what you will get


but if you did ur address as a string like this program
Code:
#include <iostream>
#include <stdlib.h>
#include <string>
using namespace std;

void main()
{
	while (1)
	{
		string address;
		cout << "input an address : ";
		cin >> address;
		cout << "here is the address you just typed : " << address << "\n\n" ;
		system("pause");
		system("CLS");
	}
}
this will be you output, and im preaty sure this is what you want


THANK ME CUZ I KNO I HELPED U
and i did this out of bordum, so talk to me and make me not bored lol
#11 · 16y ago
jany
jany
die idee war gaystar die console zu zeigen und du verkaufst es als vip hack tzz.... das is nich grade lieb ich hoffe ich werd in credits erwähnt
#12 · 16y ago
GE
GER-Domi.
1. Das ist meine idee 2. Wer zum fick ist gaystar? 3. Ist die console nur ein kleiner teil vom VIP und auserdem gibt's ja noch Public hacks ,... 4 warum sollte ich dich in die credits List schreiben ? Du hast nicht mit gecoded und nix gemacht ... Gtfo
#13 · 16y ago
jany
jany
gaystar is ein guter kumpel von mir und es war seine idee naja was solls tu was du willst
#14 · 16y ago
Posts 1–14 of 14 · Page 1 of 1

Post a Reply

Similar Threads

  • I need help with codesBy MATTHEW4422 in Combat Arms Help
    0Last post 16y ago
  • i need help with the vip hack plzBy lucifer4601 in Combat Arms Discussions
    0Last post 16y ago
  • Need help with the VIP hackBy dickos in WarRock - International Hacks
    3Last post 16y ago
  • [HELP] Need help with code. REWARDBy deadskulz in Visual Basic Programming
    14Last post 16y ago

Tags for this Thread

None