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 Discussion › Admin Debug Map - Ingame item ?

Admin Debug Map - Ingame item ?

Posts 1–4 of 4 · Page 1 of 1
T0X1Cmods
T0X1Cmods
Admin Debug Map - Ingame item ?
okay so i was looking through dayzs files and in the CfgWeapons.hpp
i found this
Code:
class ItemMap_Debug: ItemCore {
		descriptionshort = "Debug Map - Admin use only";
		displayname = "Map";
		picture = "\ca\ui\data\gear_picture_map_ca.paa";
		scope = 2;
		simulation = "ItemMap";
		class Library {
			libtextdesc = "Debug Map - Admin use only";
		};
	};
so has anyone ever seen this before or tried spawning ItemMap_Debug and seeing what it is/does
#1 · 13y ago
Distraught2
Distraught2
Quote Originally Posted by T0X1Cmods View Post
so has anyone ever seen this before or tried spawning ItemMap_Debug and seeing what it is/does
Actually I have. If you look at the map. It'll show a zone around where your position is. Basically just a circle around you. Not sure what other players look like but I don't believe it shows them.
#2 · 13y ago
T0X1Cmods
T0X1Cmods
Quote Originally Posted by Distraught2 View Post
Actually I have. If you look at the map. It'll show a zone around where your position is. Basically just a circle around you. Not sure what other players look like but I don't believe it shows them.
about your PM see where it says class ItemBpt_b1 for example ItemBpt_b1 would be that bluprints class name and create = "wooden_shed_lvl_1"; would be what that blueprint is used to make
Code:
class ItemBpt_b1 : CA_Magazine {
		scope = public;
		count = 1;
		type = (256 * 1);
		displayName = $STR_BLUEPRINT_B1;
		model = "\origins_pack\items\item_blueprints.p3d";
		picture = "\origins_pack\items\textures\item_blueprints_ui.paa";
		descriptionShort = $STR_BLUEPRINT_DESC;
		
		class ItemActions {
			class Build {
				text = $STR_BUILDING_FOUNDATION;
				script = "spawn player_bbstart;";
				require[] = {"ItemToolbox"};
				create = "wooden_shed_lvl_1";
			};
		};
	};

	class ItemBpt_b2 : CA_Magazine {
		scope = public;
		count = 1;
		type = (256 * 1);
		displayName = $STR_BLUEPRINT_B2;
		model = "\origins_pack\items\item_blueprints.p3d";
		picture = "\origins_pack\items\textures\item_blueprints_ui.paa";
		descriptionShort = $STR_BLUEPRINT_DESC;
		
		class ItemActions {
			class Build {
				text = $STR_BUILDING_FOUNDATION;
				script = "spawn player_bbstart;";
				require[] = {"ItemToolbox"};
				create = "log_house_lvl_2";
			};
		};
	};

	class ItemBpt_b3 : CA_Magazine {
		scope = public;
		count = 1;
		type = (256 * 1);
		displayName = $STR_BLUEPRINT_B3;
		model = "\origins_pack\items\item_blueprints.p3d";
		picture = "\origins_pack\items\textures\item_blueprints_ui.paa";
		descriptionShort = $STR_BLUEPRINT_DESC;
		
		class ItemActions {
			class Build {
				text = $STR_BUILDING_FOUNDATION;
				script = "spawn player_bbstart;";
				require[] = {"ItemToolbox"};
				create = "wooden_house_lvl_3";
			};
		};
	};

	class ItemBpt_h1 : CA_Magazine {
		scope = public;
		count = 1;
		type = (256 * 1);
		displayName = $STR_BLUEPRINT_H1;
		model = "\origins_pack\items\item_blueprints.p3d";
		picture = "\origins_pack\items\textures\item_blueprints_ui.paa";
		descriptionShort = $STR_BLUEPRINT_DESC;
		
		class ItemActions {
			class Build {
				text = $STR_BUILDING_FOUNDATION;
				script = "spawn player_bbstart;";
				require[] = {"ItemToolbox"};
				create = "large_shed_lvl_1";
			};
		};
	};

	class ItemBpt_h2 : CA_Magazine {
		scope = public;
		count = 1;
		type = (256 * 1);
		displayName = $STR_BLUEPRINT_H2;
		model = "\origins_pack\items\item_blueprints.p3d";
		picture = "\origins_pack\items\textures\item_blueprints_ui.paa";
		descriptionShort = $STR_BLUEPRINT_DESC;
		
		class ItemActions {
			class Build {
				text = $STR_BUILDING_FOUNDATION;
				script = "spawn player_bbstart;";
				require[] = {"ItemToolbox"};
				create = "small_house_lvl_2";
			};
		};
	};

	class ItemBpt_h3 : CA_Magazine {
		scope = public;
		count = 1;
		type = (256 * 1);
		displayName = $STR_BLUEPRINT_H3;
		model = "\origins_pack\items\item_blueprints.p3d";
		picture = "\origins_pack\items\textures\item_blueprints_ui.paa";
		descriptionShort = $STR_BLUEPRINT_DESC;
		
		class ItemActions {
			class Build {
				text = $STR_BUILDING_FOUNDATION;
				script = "spawn player_bbstart;";
				require[] = {"ItemToolbox"};
				create = "big_house_lvl_3";
			};
		};
	};

	class ItemBpt_g_s : CA_Magazine {
		scope = public;
		count = 1;
		type = (256 * 1);
		displayName = $STR_BLUEPRINT_GARAGE_S;
		model = "\origins_pack\items\item_blueprints.p3d";
		picture = "\origins_pack\items\textures\item_blueprints_ui.paa";
		descriptionShort = $STR_BLUEPRINT_DESC;
		
		class ItemActions {
			class Build {
				text = $STR_BUILDING_GARAGE;
				script = "spawn player_bbstart;";
				require[] = {"ItemToolbox"};
				create = "small_garage";
			};
		};
	};

	class ItemBpt_g_b : CA_Magazine {
		scope = public;
		count = 1;
		type = (256 * 1);
		displayName = $STR_BLUEPRINT_GARAGE_B;
		model = "\origins_pack\items\item_blueprints.p3d";
		picture = "\origins_pack\items\textures\item_blueprints_ui.paa";
		descriptionShort = $STR_BLUEPRINT_DESC;
		
		class ItemActions {
			class Build {
				text = $STR_BUILDING_GARAGE;
				script = "spawn player_bbstart;";
				require[] = {"ItemToolbox"};
				create = "big_garage";
			};
		};
	};
to find the rest look in origins dayz_equip.pbo and open config.cpp then do a quick ctlr + f and search blueprint
#3 · edited 13y ago · 13y ago
Distraught2
Distraught2
I saw those ones. But there are rare blueprints that drop off the Mayor on Salvation Island. Can't seem to find those. First 5 min of this video shows it off.


I know the one featured in that video is referred to as "Object X"
#4 · edited 13y ago · 13y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • Trading CrossFire account for ingame ItemsBy Skyflashh in Realm of the Mad God Selling / Trading / Buying
    6Last post 13y ago
  • SELLING ROTMG ACCOUNTS FOR INGAME ITEMS, OR OTHER GAME ITEMS, OR GAMECARDS. MM USEDBy Kuehljosh in Realm of the Mad God Selling / Trading / Buying
    12Last post 13y ago
  • -DAYZ SPAWNING SERVER- -CHEAP -1.50$- -ANY MAP/ANY ITEM/ -By Echodept in DayZ Selling / Trading / Buying
    0Last post 13y ago
  • SELLING FULLY MAXED KNIGHT(8/8 old tops) FOR INGAME ITEMSBy MattressRotMG in Realm of the Mad God Selling / Trading / Buying
    0Last post 13y ago
  • Selling my Muledump!! (trading ingame items or accounts!)By Skatzi in Realm of the Mad God Selling / Trading / Buying
    2Last post 13y ago

Tags for this Thread

None