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 › need help with some scripts

Questionneed help with some scripts

Posts 1–10 of 10 · Page 1 of 1
diehardx95
diehardx95
need help with some scripts
hello guys iv been working on a custom menu for myself that bring wasteland and dayz into one menu so i dont have to switch between them and im haveing problem with two scripts

1. money: img = img + [""]; option = option + [" Money","wasteland\money.sqf","1","0","0"];
the script itself: http://pastebin.com/7KzJ01LC


2. news banner: img = img + [""]; option = option + [" News Broadcast","newsbanner.sqf","0","0","0"];
script itself: http://pastebin.com/4FkdMrgr

they seem not to work in game
#1 · edited 13y ago · 13y ago
Jim Morrison
[MPGH]Jim Morrison
You can put the code in a format like this (With the brackets [ ]:
CODE
(Code Here]
/CODE
Makes it a bit more appealing to read, also I think the newsbanner script is wrong; don't know much about scripting though.
#2 · 13y ago
typh0
typh0
Your money script wont work on wasteland, it wont do anything.
I havnt seen that newsbanner scripts work on wasteland either
#3 · 13y ago
qaper123
qaper123
Money script isn't working as it's for Takistan Life. The newsbanner is not working because of wastelands way to block it somehow or because of a scripting error which I am unable to check for since you have not put the code in a code format :P (Check post above to see how to)
#4 · 13y ago
diehardx95
diehardx95
Quote Originally Posted by qaper123 View Post
Money script isn't working as it's for Takistan Life. The newsbanner is not working because of wastelands way to block it somehow or because of a scripting error which I am unable to check for since you have not put the code in a code format :P (Check post above to see how to)
i couldnt figure out the code format thing so i put it on pastebin
#5 · 13y ago
qaper123
qaper123
Quote Originally Posted by diehardx95 View Post
i couldnt figure out the code format thing so i put it on pastebin
To be honest I think it might be the color codes that are incorrectly placed but I still can't see where the spaces are put since pastebin fucks em up.

All you need to do is "CODE" "/CODE" and replace quotes with [ and ] then put the code in between.
#6 · edited 13y ago · 13y ago
diehardx95
diehardx95
i hope this works because it wont let me edit the og
All you need to do is "CODE" "/CODE" and replace quotes with [ and ] then put the code in between.
thank you for making that simpler, i am new so my bad for the stupid shit

money:
Code:
 ["moneh",5000000] call INV_addinventoryitem;
hint "Money is added Enjoy";
news banner:
Code:
 if (isNil "nb") then
{
nb = 0;
};
 
if (nb == 0) then
{
nb = 1;
hint "Begin Project... 123";
_text = "["123", "123"] spawn BIS_fnc_infoText;";
[_text] execVM "scr\exec.sqf";
_news = "[parseText ""<t size='2.3' color='#00FF00'>123</t><br/><t color='#00FFFF'>test</t>"",parseText ""<t size='1.5' color='#FE2E2E'>|:3 </t><t size='1.5' color='#FACC2E'>|:3 </t><t size='1.5' color='#80FF00'>|:3 </t><t size='1.5' color='#00FF00'>|:3 </t><t size='1.5' color='#2EFE9A'>|:3 </t><t size='1.5' color='#00FFFF'>|:3 </t><t size='1.5' color='#0174DF'>|:3 </t><t size='1.5' color='#013ADF'>|:3 </t><t size='1.5' color='#3A01DF'>|:3 </t><t size='1.5' color='#A901DB'>|:3 </t><t size='1.5' color='#DF0174'>|:3 </t><t size='1.5' color='#00FFFF'>|:3 </t>""] spawn BIS_fnc_AAN;";
sleep 3;
[_news] execVM "scr\exec.sqf";
sleep 3;
_vid = "[""\ca\video_pmc\CP10b_reynolds.ogv"", 1.04] spawn BIS_fnc_customGPSvideo;";
[_vid] execvm "scr\exec.sqf";
}
 
else
{
nb = 0;
hint "Ending Project... |:3";
_news = "3000 cutRsc [""Default"", ""PLAIN"", 2];";
[_news] execVM "scr\exec.sqf";
};
#7 · edited 13y ago · 13y ago
qaper123
qaper123
Alright honestly I can't see what's wrong with the news banner. If you want to I can give you the code from my working one and you could edit that to whatever you like?
#8 · 13y ago
diehardx95
diehardx95
Quote Originally Posted by qaper123 View Post
Alright honestly I can't see what's wrong with the news banner. If you want to I can give you the code from my working one and you could edit that to whatever you like?
yes that would be nice thank you
#9 · 13y ago
Jim Morrison
[MPGH]Jim Morrison
I believe the newsbanner isn't working, but not sure.
#10 · 13y ago
Posts 1–10 of 10 · Page 1 of 1

Post a Reply

Similar Threads

  • Need help with my ScriptBy hannemannen in Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    8Last post 14y ago
  • need help with some quick codesBy ravinghippie in Anti-Cheat
    1Last post 17y ago
  • Need help with some codes - Vb8By NatureSkillz in Visual Basic Programming
    9Last post 17y ago
  • i need help with some HARD AdressesBy shanky1 in WarRock - International Hacks
    10Last post 19y ago
  • Need help with some long forgotten VB code...By ROUGHS3X in Combat Arms Help
    0Last post 16y ago

Tags for this Thread

None