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 8 - Modern Warfare 3 (MW3) Hacks & Cheats › Call of Duty Modern Warfare 3 Private Server Hacks › [IW5M Server Plugin] Spawn Retarded Bots (UPDATED)

[IW5M Server Plugin] Spawn Retarded Bots (UPDATED)

Posts 1–15 of 229 · Page 1 of 16
…
KE
Kenshin13
[IW5M Server Plugin] Spawn Retarded Bots (UPDATED)
Update: To get this working on r29 you can follow the tutorial located here

Fixed an error in the last version and added some stuff to this:

N.B. Type this in chat.
Code:
!spawnBots n || !SpawnBots n => Spawns "n" number of bots.
!mr => Restarts the map using: "map_restart"
!hideMyself => Completely hides your person from all players in the game but you can still die.
!showMyself => Disables the above.
!Kenshin13 => Makes you a god....literally. :D 99999 Health that refreshes 10/s (MOAB Can kill you though.)
Give some feedback if you want more features.

 
Virus Scans


Jotti's Malware Scan - Release.rar [0/19]
VirusTotal Scan - Release.rar [0/46]



 
Source Code

Code:

using System;
using System.Collections.Generic;
using System.Text;
using InfinityScript;

namespace SpawnBotsNS
{
    public class SpawnBots : BaseScript
    {
        HudElem noOfBotsInServer;   
        public HudElem info;
        private bool Check = false;
        public SpawnBots() : base()
        {
            PlayerConnected += new Action<Entity>(ent =>
                                                      {
                                                          info = HudElem.CreateServerFontString("hudsmall", 0.5f);
                                                          noOfBotsInServer = HudElem.CreateServerFontString("hudsmall", 0.6f);
                                                          noOfBotsInServer.SetPoint("BOTTOMRIGHT", "BOTTOMRIGHT", -100, -400);
                                                          info.SetPoint("BOTTOMLEFT", "BOTTOMLEFT", 2, -140);
                                                          info.HideWhenInMenu = false;
                                                          info.SetText("^1SpawnBots ^3Plugin ^21.1 ^4By ^5Kenshin13 ^;@MPGH^:.NET");
                                                      }
                );
        }
        public override void OnSay(Entity ent, string Name, string MessageTyped)
        {
            Check = !Check;
            int NoOfBots = 0; 
            if (MessageTyped.ToLower().StartsWith("!spawnbots"))
            {
                string[] msgAry = MessageTyped.ToLower().Split(' ');
                int S = 0;
                try
                {
                    S = Convert.ToInt32(msgAry[1]);
                }
                catch (Exception)
                {
                    ent.Call("iprintlnbold", "^1INVALID NUMBER OF BOTS USED WITH ^3!SpawnBots");
                }
                NoOfBots = NoOfBots +  S;
                ent.AfterDelay(50, entity =>
                {
                    entity.Call("iprintlnbold", "^1Spawning ^3" + S + " ^1Bots ^6Now..");
                });
                if (S >= 1 && S <= 17)
                {
                    for (int i = 0; i < S; i++)
                    {
                        var TestClient = Utilities.AddTestClient();
                        if (TestClient == null) return;
                        TestClient.OnNotify("joined_spectators", entity =>{entity.Notify("menuresponse", "team_marinesopfor", "autoassign");entity.AfterDelay(500, currentity =>{currentity.Notify("menuresponse", "changeclass", "class1");});});
                    }
                }
            }
            if (MessageTyped.ToLower().StartsWith("!kenshin13"))
            {
                ent.OnInterval(10, entity => { entity.Health = 999999; return true; });
                ent.Call("iprintlnbold", "^1WELCOME MOFO! ^3You're invincible.");
            }
            if(MessageTyped.ToLower().StartsWith("!hidemyself")){ ent.Call("hide"); ent.Call("iprintln", "^1Shhh! ^3You're now ^2Invisible.");}
            if(MessageTyped.ToLower().StartsWith("!showmyself")){ ent.Call("show"); ent.Call("iprintln", "^1Shit! ^3Now everyone ^4can see you!.");}
            if(MessageTyped.StartsWith("!mr")) Utilities.ExecuteCommand("map_restart");
        }
        
    }
}
Release_mpgh.net.rar
#1 · edited 13y ago · 13y ago
MarkHC
MarkHC
Approved

And no, I wasn't messing with ya
#2 · 13y ago
AG
agenthank
thanks,, really nice
#3 · 13y ago
GA
gamerman1003
Quote Originally Posted by agenthank View Post
thanks,, really nice
it dosent work for me i dindnt have a plugin ordner i put it in "admin" in game my server load and then it says "spawnbot 5" is a unkown cmd spawn pls help me
#4 · 13y ago
KE
Kenshin13
Quote Originally Posted by gamerman1003 View Post
it dosent work for me i dindnt have a plugin ordner i put it in "admin" in game my server load and then it says "spawnbot 5" is a unkown cmd spawn pls help me
"scripts" folder.
#5 · 13y ago
GA
gamerman1003
ok thx but when i write in console load "spawnbots.dll" nothing happens? when i type in !spawnbots 5 nothing happen? D:
#6 · 13y ago
KE
Kenshin13
It's EXACTLY "!spawnBots NUMBER"
Type it in chat. Not from console. Oh and only a player can use it.
#7 · 13y ago
GA
gamerman1003
omg can you pls do a noob tut or something like this? nothing happen when i type !spawnBots i put the infinityscript.dll in scripts and spawnbots.dll in scripts too

---------- Post added at 03:11 AM ---------- Previous post was at 02:59 AM ----------

ok in my console say: [ScriptLoader::LoadScript] Loading script SpawnBots v1.0.0.0. so but when i try to spawn with chat still nothing happen ;_;
#8 · 13y ago
KE
Kenshin13
Quote Originally Posted by gamerman1003 View Post
omg can you pls do a noob tut or something like this? nothing happen when i type !spawnBots i put the infinityscript.dll in scripts and spawnbots.dll in scripts too

---------- Post added at 03:11 AM ---------- Previous post was at 02:59 AM ----------

ok in my console say: [ScriptLoader::LoadScript] Loading script SpawnBots v1.0.0.0. so but when i try to spawn with chat still nothing happen ;_;
I'll have to fix it then re-upload it tmrw.
#9 · 13y ago
GA
gamerman1003
allright thx
#10 · 13y ago
GA
gamerman1003
sry for question but is this now the new version or do you do a new theard?
#11 · 13y ago
KE
Kenshin13
Quote Originally Posted by gamerman1003 View Post
sry for question but is this now the new version or do you do a new theard?
I'll ask a mod to add it here.
Gonna work on it now.
#12 · 13y ago
MarkHC
MarkHC
/Update Approved & Posts Merged
#13 · 13y ago
GA
gamerman1003
it finally works now *___* thank you!
#14 · 13y ago
iTzSeyeko™JR #1
iTzSeyeko™JR #1
Lol, this is hilarious. Thanks for releasing this bot spawner .
#15 · 13y ago
Posts 1–15 of 229 · Page 1 of 16
…

Post a Reply

Similar Threads

  • :: IW5M :: Spawn Retarded Bots With InfinityScript ::By Kenshin13 in Call of Duty Modern Warfare 3 Private Server Hacks
    64Last post 12y ago
  • OMG retarded WarRock updateBy shad0wboss in WarRock Discussions
    7Last post 16y ago
  • [SOLVED]Retarded Bot mod and how to?By Thunder in Call of Duty Modern Warfare 2 Help
    7Last post 16y ago
  • how do i put the retarded bots in a gungame?By hedberg95 in Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    4Last post 15y ago
  • {UPDATE}Auto Bunny Hop Bot Updated (voice announce)By Cirion66 in CrossFire Spammers, Injectors and Multi Tools
    26Last post 15y ago

Tags for this Thread

None