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 › Call of Duty Hacks & Cheats › Call of Duty 10 - Ghosts Hacks & Cheats › Call of Duty Ghosts Coding & Resources › [VB.NET] Mod menu base by [AeroCryX]

Cool[VB.NET] Mod menu base by [AeroCryX]

Posts 1–4 of 4 · Page 1 of 1
KingX735
KingX735
[VB.NET] Mod menu base by [AeroCryX]
Hi there, today, i'll show you how to create a mod menu ( base ).
Let's start !

Create a new project :

First, add GetAsyncKey function and declare i, u and Hotkey3 :



Code:
 Public Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Int32) As Int16

    Dim i As Integer = 1
    Dim u As Integer = 0
    Dim hotkey3 As Boolean
Next, you'll have to add a timer, enable it and put this code in :



Code:
 Dim hotkey2 As Boolean
        hotkey2 = GetAsyncKeyState(Keys.R)
        If hotkey2 = True Then
            i += 1
        End If

        hotkey3 = GetAsyncKeyState(Keys.Space)
Add some labels, rename them to something like that ( try to create the same design, You can change functions to whatever you want, you can also delete some labels. )



Add a new timer once again and put this code in :



Code:
 If i = 1 Then
            Label1.BackColor = Color.FromArgb(180, 70, 70)
            Label9.BackColor = Color.Black
        ElseIf i = 2 Then
            Label1.BackColor = Color.Black
            Label2.BackColor = Color.FromArgb(86, 130, 3)
        ElseIf i = 3 Then
            Label2.BackColor = Color.Black
            Label3.BackColor = Color.FromArgb(0, 127, 255)
        ElseIf i = 4 Then
            Label3.BackColor = Color.Black
            Label4.BackColor = Color.FromArgb(78, 61, 40)
        ElseIf i = 5 Then
            Label4.BackColor = Color.Black
            Label5.BackColor = Color.FromArgb(209, 98, 0)
        ElseIf i = 6 Then
            Label5.BackColor = Color.Black
            Label6.BackColor = Color.FromArgb(101, 3, 112)
        ElseIf i = 7 Then
            Label6.BackColor = Color.Black
            Label7.BackColor = Color.FromArgb(200, 70, 120)
        ElseIf i = 8 Then
            Label7.BackColor = Color.Black
            Label8.BackColor = Color.FromArgb(102, 102, 0)
        ElseIf i = 9 Then
            Label8.BackColor = Color.Black
            Label9.BackColor = Color.FromArgb(200, 10, 10)
        End If
I = Number of labels, if you have for exemple 7 labels, Here is your code :



Add also this code in the second timer :



Code:
 If i = 10 Then
            i = 1
        End If

        If u = 0 Then
            Me.Opacity = 0.85


        ElseIf u = 1 Then
            Me.Opacity = 0

        End If

        If u = 2 Then
            u = 0
        End If
Change

If i = 10

to

If i = Number of labels +1

Wow, you did a new mod menu, debug it and press " R " or / and " E "
Well, it's not finished yet !

add this code in the first timer :

Code:
 If hotkey3 = True And i = 1 Then
            'Do stuff, label1 Selected
        End If

        If hotkey3 = True And i = 2 Then
        'Do Stuff, label2 selected
        End If


        If hotkey3 = True And i = 3 Then
           'Do stuff, label3 selected
        End If

        If hotkey3 = True And i = 4 Then
           'Do stuff, label4 selected
        End If

        If hotkey3 = True And i = 5 Then
            'Do stuff label5 selected
        End If

        If hotkey3 = True And i = 6 Then
            'Do stuff label6 selected
        End If

        If hotkey3 = True And i = 7  Then
        'Do stuff, label7 selected
        End If

        If hotkey3 = True And i = 8 Then
        'Do stuff, label8 selected
        End If

Finally, yay
So it's a bit hard, but you guys could understand

DON'T FORGET TO GIVE CREDITS TO ME ( AEROCRYX75 )
#1 · 12y ago
LO
Lovroman
Let the leechers come, hehe.
Good job, thanks for sharing!
#2 · 12y ago
SammyDoge1
SammyDoge1
Quote Originally Posted by Lovroman View Post
Let the leechers come, hehe.
Good job, thanks for sharing!
Doubt the leechers know what to do with this, and the code to write behind/with it.
Nice share Btw King!
#3 · 12y ago
Izochor
Izochor
Beast share! Thank you very much!
#4 · 12y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • [Release] nay1995's Sexy Cod4 & 5 Mod Menu BaseBy nay in Call of Duty 4 - Modern Warfare (MW) Hacks
    0Last post 13y ago
  • Ghosts 3.5.4 Mod Menu Build 1.0 Beta by AeroCryXBy KingX735 in Call of Duty 10 - Ghosts Hacks & Cheats
    35Last post 12y ago
  • Mod menu build 1.1 beta [AeroCryX]By KingX735 in Call of Duty 10 - Ghosts Hacks & Cheats
    28Last post 12y ago
  • Shall i release a fullyworking C/P able menu base?By Mr.Magicman in Combat Arms Discussions
    37Last post 16y ago
  • Menu Based - Anti Kick + WalkbotBy p0wn4ge in WarRock - International Hacks
    23Last post 16y ago

Tags for this Thread

#aerocryx#create a new mod menu#menu#mod#mod menu