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 › Other Semi-Popular First Person Shooter Hacks › DayZ Mod & Standalone Hacks & Cheats › DayZ Help & Requests › Overwatch/Breaking Points classname / box / bot

Overwatch/Breaking Points classname / box / bot

Posts 1–3 of 3 · Page 1 of 1
sh1nra
sh1nra
Overwatch/Breaking Points classname / box / bot
anyone have class names für overwatch or a spawn box script with all weapons for overwatch or breaking point?

best regards
#1 · 12y ago
FU
furiouswai
I was going to include overwatch / breaking point / dayzero specific bots, but I didn't want to go through all the trouble of retrieving the classnames. Distraught mentioned he might add them to the sticky so I didn't want to do all the work for nothing. Here is an overwatch 0.2.2 list:
http://www.opendayz.net/threads/full...t-0-2-2.12961/

This script will spawn a bot with all possible weapons and magazines (fake and legit) available on the server it is executed on. Could be helpful in making class names lists. creds: rustler, hangender, bigben

Code:
					_gorebyss1 = [];
					_gorebyss2 = [];
					_cfgweapons = configFile >> "cfgWeapons";
					for "_i" from 0 to (count _cfgweapons)-1 do 
					{
						_weapon = _cfgweapons select _i;
						if (isClass _weapon) then 
						{
							_gorebyss3 = configName(_weapon);
							_gorebyss4 = getText(configFile >> "cfgWeapons" >> _gorebyss3 >> "displayName");
							_gorebyss5 = getText(configFile >> "cfgWeapons" >> _gorebyss3 >> "model");
							_gorebyss6 = getNumber(configFile >> "cfgWeapons" >> _gorebyss3 >> "type");
							_gorebyss7 = getNumber(configFile >> "cfgWeapons" >> _gorebyss3 >> "scope");
							_gorebyss8 =  getText(configFile >> "cfgWeapons" >> _gorebyss3 >> "picture");
							_gorebyss9 = getText(configFile >> "cfgWeapons" >> _gorebyss3 >> "Library" >> "libTextDesc");	

							_isFake = false;
							_gorebyss10=0;
							_mags=[];
							_gorebyss11 = getArray(configfile >> "cfgWeapons" >> _gorebyss3 >> "muzzles");
							if ((_gorebyss11 select 0)=="this") then 
							{
								_gorebyss11=[_gorebyss3];
								_mags = getArray(configfile >> "cfgWeapons" >> _gorebyss3 >> "magazines");
							}
							else
							{
								{
									_muzzle=_x;
									_mags = getArray(configfile >> "cfgWeapons" >> _gorebyss3 >> _muzzle >> "magazines");
								} forEach _gorebyss11;
							};
							
							{
								_ammo = getText(configfile >> "cfgMagazines" >> _x >> "ammo");
								_hit = getNumber(configfile >> "cfgAmmo" >> _ammo >> "hit");
								_gorebyss10 = _gorebyss10 + _hit;
							} forEach _mags;

							if ((_gorebyss3!="") && (_gorebyss4!="") && (_gorebyss5!="") && (_gorebyss8!="")) then 
							{
								if !(_gorebyss4 in _gorebyss2) then 
								{
									_gorebyss1 = _gorebyss1 + [[_gorebyss3,_gorebyss4,_gorebyss8,_gorebyss9]];
									_gorebyss2 = _gorebyss2 + [_gorebyss4];
								};
							};
						};
					};
					_gorebyss2=nil;

					_gorebyss12 = [];
					_gorebyss2 = [];
					_cfgmagazines = configFile >> "cfgmagazines";
					for "_i" from 0 to (count _cfgmagazines)-1 do 
					{
						_magazine = _cfgmagazines select _i;
						if (isClass _magazine) then 
						{
							_gorebyss13 = configName(_magazine);
							_gorebyss14 = getText(configFile >> "cfgmagazines" >> _gorebyss13 >> "displayName");
							_gorebyss15 = getText(configFile >> "cfgmagazines" >> _gorebyss13 >> "model");
							_gorebyss16 = getNumber(configFile >> "cfgmagazines" >> _gorebyss13 >> "type");
							_gorebyss17 = getNumber(configFile >> "cfgmagazines" >> _gorebyss13 >> "scope");
							_gorebyss17 =  getText(configFile >> "cfgmagazines" >> _gorebyss13 >> "picture");
							_gorebyss18 = getText(configFile >> "cfgmagazines" >> _gorebyss13 >> "Library" >> "libTextDesc");	

							if ((_gorebyss13!="") && (_gorebyss14!="") && (_gorebyss15!="")) then 
							{
								if !(_gorebyss14 in _gorebyss2) then 
								{
									_gorebyss12 = _gorebyss12 + [[_gorebyss13,_gorebyss14,_gorebyss17,_gorebyss18]];
										_gorebyss2 = _gorebyss2 + [_gorebyss14];
								};
							};
						};
					};
					_gorebyss2=nil;

					

						gorebyss19 = [];

						_gorebyss20 = getposATL player; 
						_dir = getdir player; 
						_gorebyss20 = [(_gorebyss20 select 0)+4*sin(_dir),(_gorebyss20 select 1)+4*cos(_dir), (_gorebyss20 select 2)]; 

						_agent = createAgent ["Bandit1_DZ", _gorebyss20, [], 5, "NONE"];
						_position = [_position,0,20,10,0,20,0] call BIS_fnc_findSafePos;


						{ 
							if !(_x in gorebyss19) then
							{
								for "_i" from 1 to 5 do {_agent addWeapon (_x select 0);}; 
							};
						} forEach _gorebyss1; 
						
						{ 
							if !(_x in gorebyss19) then
							{
								for "_i" from 1 to 30 do {_agent addMagazine (_x select 0);}; 
							};
						} forEach _gorebyss12;
Ctrl + h "gorebyss" and replace all occurrences with something random that won't be caught by variable scan (since I am posting this in the public eye).
#2 · edited 12y ago · 12y ago
CO
Confin3d
question was answered, closing.
#3 · 12y ago
Posts 1–3 of 3 · Page 1 of 1

Post a Reply

Similar Threads

  • Arc123 spawning service any mod [origins] [overwatch] [breaking point] super cheapBy Arc123 in DayZ Selling / Trading / Buying
    2Last post 12y ago
  • Breaking Point spawning service - Camps, Vehicles, BoxesBy asdf121212 in DayZ Selling / Trading / Buying
    21Last post 13y ago
  • Dayz Origins l Breaking Point l Overwatch l Epoch l Spawning ServiceBy maxdavis in DayZ Selling / Trading / Buying
    9Last post 13y ago
  • Breaking Point/ Overwatch DupeBy patriot013 in DayZ Mod & Standalone Hacks & Cheats
    16Last post 13y ago
  • Dayz Spawning | Normal Dayz| Overwatch | Orgins| Breaking Point | SafeBy hippomods in DayZ Selling / Trading / Buying
    1Last post 12y ago

Tags for this Thread

None