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 › Visual Basic Programming › [HELP]Send random keys?

[HELP]Send random keys?

Posts 1–15 of 27 · Page 1 of 2
Pixie
Pixie
[HELP]Send random keys?
How do I send random keys in Visual Basics 08?

Like I want to do this:
Code:
SendKeys.Send "{enter}"
SendKeys.Send (TextBox1.Text)
And at the end, it will send the random key, so like Textbox1.text is "Hello"
and I want it to say 3 little random letters at the end of it the message,

like it would say this when I spam:

Code:
Hello 4g8
#1 · 16y ago
Houston
Houston
For what is it
maybe i can tell it
--------
and what do you want to make maybe i can help you with that
#2 · edited 16y ago · 16y ago
Pixie
Pixie
Quote Originally Posted by Don Diablo View Post
For what is it
maybe i can tell it
--------
and what do you want to make maybe i can help you with that
I'm making a Combat Arms spammer, and since they have a muting system, I want to bypass that, with random letters at the end
#3 · 16y ago
HE
Hellbombil
Do this:

Code:
SendKeys.Send "{enter}"
SendKeys.Send (TextBox1.Text) + " 4g8"
#4 · 16y ago
MO
monkey32's_backup
Maybe try it with cases pixie? Kinda like you would do a random generator. Just make it where it says it at the end of textbox1.text.
#5 · 16y ago
HE
Hellbombil
ya my bad you wanted it actually random ya just do the cases code and make like multiple cases and then it will add a new one every different time
#6 · 16y ago
Pixie
Pixie
I want to use the Rnd function,
Could some one please tell me about how to use that?
#7 · 16y ago
MO
monkey32's_backup
Just use cases, it'll work.
#8 · 16y ago
Pixie
Pixie
Quote Originally Posted by monkey32's_backup View Post
Just use cases, it'll work.
What are those??
There are still some things I don't know
#9 · 16y ago
stevethehacker
stevethehacker
well I know how to do this with numbers.let me see.i have made a program with this so let me see if I can find source and see wat I did.earlier today I made a compatibility test.You enter your name and some1 elses and you get compatibility percent.should I upload it here?
#10 · 16y ago
IA
Iamazn1
Quote Originally Posted by PixieCorp View Post
I'm making a Combat Arms spammer, and since they have a muting system, I want to bypass that, with random letters at the end
Don Diablo probably cant do shit.
In timer put,

Code:
Dim min = Convert.ToInt32("a"c)
'Change a to A for Caps
      Dim max = Convert.ToInt32("z"c) + 1
'Change z to Z for Caps
      Dim rng As New Random
       Dim RndText As New StringBuilder(3)
      For count = 1 To 3
          RnDtext.Append(Convert.ToChar(rng.Next(min, max)))
      Next
SendKeys.Send "{enter}"
SendKeys.Send (TextBox1.Text & RnDtext)
#11 · 16y ago
Pixie
Pixie
Quote Originally Posted by Iamazn1 View Post
Don Diablo probably cant do shit.
In timer put,

Code:
Dim min = Convert.ToInt32("a"c)
'Change a to A for Caps
      Dim max = Convert.ToInt32("z"c) + 1
'Change z to Z for Caps
      Dim rng As New Random
       Dim RndText As New StringBuilder(3)
      For count = 1 To 3
          RnDtext.Append(Convert.ToChar(rng.Next(min, max)))
      Next
SendKeys.Send "{enter}"
SendKeys.Send (TextBox1.Text & RnDtext)
I get this when doing that:

It underlines this:
Code:
Dim RndText As New StringBuilder(3)
and here is the error message:
Code:
Error	1	Type 'StringBuilder' is not defined.
#12 · 16y ago
IA
Iamazn1
Quote Originally Posted by PixieCorp View Post
I get this when doing that:

It underlines this:
Code:
Dim RndText As New StringBuilder(3)
and here is the error message:
Code:
Error	1	Type 'StringBuilder' is not defined.
Try that. If it still doesnt work, tell me
Code:
imports.system.text
#13 · 16y ago
Pixie
Pixie
Quote Originally Posted by Iamazn1 View Post
Try that. If it still doesnt work, tell me
Code:
imports.system.text
EDIT: Where do I put it??
#14 · 16y ago
IA
Iamazn1
Quote Originally Posted by PixieCorp View Post
EDIT: Where do I put it??
Very top. Above "Public Class Form1"
#15 · 16y ago
Posts 1–15 of 27 · Page 1 of 2

Post a Reply

Similar Threads

  • Random # key generationBy lawyer666 in Vindictus Help
    10Last post 15y ago
  • [Application] Random key generatorBy youngbucks in Visual Basic Programming
    17Last post 17y ago
  • Need Help Get Beta Key Come in HereBy Eviljamesh in Battlefield Heroes Hacks
    1Last post 17y ago
  • Need Help Sending a VirusBy I_Cheat in General Hacking
    1Last post 16y ago
  • [HELP] Sending PicturesBy ViittO in Visual Basic Programming
    4Last post 16y ago

Tags for this Thread

#helpsend#keys#random