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 › Minecraft Hacks & Cheats › Minecraft Help › How to get Online Players (Hacked Client Coding)

ExclamationHow to get Online Players (Hacked Client Coding)

Posts 1–4 of 4 · Page 1 of 1
RandomAmazingGuy
RandomAmazingGuy
How to get Online Players (Hacked Client Coding)
I'm making a .scrape feature on my client and can't seem to get the online players (I've tried looking in GuiIngame but I don't get how the tab list works, it's a giant list of vars and I've no idea what they do). Any help is appreciated, everything else is working fine but this I simply can't get working.
#1 · 12y ago
LO
LordPankake
Code:
if(par1Str.toLowerCase().startsWith("-scrape"))
        {
            Desktop dk=Desktop.getDesktop();
            ArrayList<String> names = new ArrayList<String>();
            
            NetClientHandler nch= mc.thePlayer.sendQueue;
            List lstQueue=
Code:
nch.playerInfoList;
            for (int x = 0; x < lstQueue.size(); x++)
            {
                 GuiPlayerInfo z = (GuiPlayerInfo) lstQueue.get(x);
                 String N = z.name;
                 if(N.startsWith("§"))
                 {
                     String F = N.substring(2);
                     names.add(F);
                 }
                 else
                 {
                     names.add(N);
                 }
                 
FileWriter fstream;
			File obDir = new File("Obsidian");
			String obLoc = obDir.toString();
			String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(Calendar.getInstance().getTime());
			if (!obDir.exists())
			{
				obDir.mkdir();
			}
			
			try
			{
				fstream = new FileWriter(obLoc + "\\" + "scrape " + timeStamp + ".txt");
				BufferedWriter out = new BufferedWriter(fstream);
				for(String s : names)
				{
					out.write(s);
					out.newLine();
				}
				out.close();
				dk.open(new File(obLoc + "\\" + "scrape " + timeStamp + ".txt"));
			}
			catch (IOException e)
			{
				e.printStackTrace();
			}
            }


Here's my scrape function.
#2 · edited 12y ago · 12y ago
RandomAmazingGuy
RandomAmazingGuy
Awesome. Didn't expect such a quick response .
#3 · 12y ago
LU
lucamasira
I just scrape all the loaded players, guess ill add the tablist thing too and then remove duplicates in code, normally scraping on hypixel lol. About 100/150 names per scrape
#4 · 12y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • [TuT] How to get Flash Player 7By Juliandil in BattleOn Games Hacks, Cheats & Trainers
    6Last post 18y ago
  • [Tutorial] How to get the Wall hack to work.By wr194t in WolfTeam Hacks
    38Last post 18y ago
  • Request| How to get GP [money] hack הבקשה גם בעיבריתBy Ben_JeRi in Combat Arms Europe Hacks
    14Last post 17y ago
  • [TUT] How to get CanadianAssassin's Hack Working !!!By m1cr0 in Combat Arms Europe Hacks
    24Last post 17y ago
  • HOW TO GET an087535's HACK TO WORKBy gsu in Combat Arms Hacks & Cheats
    18Last post 17y ago

Tags for this Thread

#"coding"#"help"#"minecraft"#coding#help#minecraft