Results 1 to 12 of 12
  1. #1
    basger's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    7
    My Mood
    Amused

    How to use Cheat Engine to spawn in items in DayZ Standalone.

    Now. Browsing the forums I've seen people struggle with how to do this, I'm gonna assume this is to do with the fact that you have to search all of the threads to find out what to do, so I'm going to write this up and include all you need to know.

    What you're gonna need:

    - Cheat Engine
    - DayZ Standalone (Duh!)

    So, once you've got those two, you're gonna want to open DayZ, and then Cheat Engine. You're then gonna want to open up Cheat Engine and find the DayZ process.

    After you've done that, select value type on the right hand side of CE and select 'String', this will allow you to search for text.

    Now search for
    Code:
    ["onLoad",_this,"RscDisplayOptionsVideo",'GUI'] call compile preprocessfilelinenumbers "DZ\ui\scripts\initDisplay.sqf"
    Once the result has come up in the address list, double click the address.

    Now, you will need to change the vale, to do this just double click under the value heading, this will allow you to change the value, a box will pop up and you'll want to change the value to:
    Code:
    [] execVM "hint.sqf";
    After you've done this you'll need to go to this location
    Code:
    C:\Program Files (x86)\Steam\steamapps\common\DayZ
    Once you're there, create a new text file and name it hint.sqf, make sure the 'save as type' selection is set to 'all files', not '.txt'.

    Now you've saved that, you can open it and then add the items you want to spawn in, to do so you'll need to use this code
    Code:
    "classname" createVehicle (getPosATL player);
    The "classname" section is the item that you'll be spawning in, so if you want to spawn in a map, the code is
    Code:
    "Map_Chernarus" createVehicle (getPosATL player);
    Here is a list of item classnames -
    Code:
    DayZ Standalone Class Names
    
    Firearms:
    -M4A1: "M4A1"
    -Ammo: "B_556x45_Ball_Single" "M_STANAG_30Rnd" "M_STANAG_30Rnd_Coupled" "M_CMAG_10Rnd" "M_CMAG_20Rnd" "M_CMAG_30Rnd" "M_CMAG_40Rnd" "M_CMAG_10Rnd_Green" "M_CMAG_20Rnd_Green" "M_CMAG_30Rnd_Green" "M_CMAG_40Rnd_Green"
    -SKS: "SKS"
    -Ammo: "CLIP_762_5Rnd" "B_762x51_Ball_Single"
    -Mosin Nagant: "Mosin9130" "Mosin9130_Black" "Mosin9130_Green" "Mosin9130_Camo"
    -Ammo: "B_762x51_Ball_Five" "CLIP_762_5Rnd" "B_762x51_Ball_Single"
    
    
    
    Shotguns:
    -Izh43 Shotgun: "ShotgunIzh43" "ShotgunIzh43_Sawedoff"
    -Ammo: "B_12Gauge_Pellets_Double" "B_12Gauge_Slug_Double"
    
    Melee:
    Powered:
    -Chainsaw: "Chainsaw"
    -Ammo: "MeleeBat"
    Blunt:
    -Baseball Bate: "BaseballBat"
    -Pipe Wrench: "PipeWrench"
    blade:
    -Splitting Axe: "WoodAxe"
    -Firefighter Axe: "FirefighterAxe"
    -Combat Knife: "CombatKnife"
    
    
    
    Tools:
    -Flashlight: "Tool_Flashlight"
    -Pens: "Pen_Black" "Pen_Red" "Pen_Blue" //Paper: "Consumable_Paper"
    -Can Opener: "Tool_CanOpener"
    -Mess tin: "Tool_MessTin"
    -Pliers: "Tool_Pliers"
    -Shovel: "Tool_Shovel"
    -Crowbar: "Tool_Crowbar"
    -Fire Extinguisher: "Tool_FireExtinguisher"
    -Hammer: "Tool_Hammer"
    -Wrench: "Tool_Wrench"
    -Screwdriver: "Tool_Screwdriver"
    -Kitchen Knife: "Tool_KitchenKnife"
    -Handcuffs: "Tool_Handcuffs"
    -Handcuff Keys: "Tool_HandcuffKeys"
    
    
    
    Medical:
    -Bandages: "Medical_Bandage"
    -Disinfectant Spray: "Disinfectant Spray"
    -Alcohol Tincture: "Medical_DisinfectantAlcohol"
    -Water purification tablets: "Medical_PurificationTablets"
    -Charcoal Tabs: "Medical_CharcoalTablets"
    -Painkillers: "Medical_PainkillerTablets"
    -Vitamin Bottle: "Medical_VitaminBottle"
    -Tetracycline Antibiotics: "Medical_TetracyclineAntibiotics"
    -Epinephrine: "Medical_Epinephrine"
    -Morphine Auto-Injector: "Medical_Morphine"
    -Syringe: "Medical_Syringe"
    -Filled Syringe: "Medical_SyringeClear" "Medical_SyringeBlood"
    -Injection Vial: "Medical_InjectionVial"
    -Saline Bag: "Medical_SalineBag"
    -IV Start Kit: "Medical_StartKit"
    -Saline Bag IV: "Medical_TransfusionKit"
    -Blood Bag Kit: "Medical_BloodBag_Empty"
    -Blood Bag: "Medical_BloodBag_Full"
    -Blood Bag IV: "Medical_BloodBag_IV"
    -Blood Test Kit: "Medical_BloodTest_Kit"
    -Defibrillator: "Medical_Defibrillator"
    
    
    
    Misc:
    -Full Map: "Map_Chernarus"
    -1/4 Map Pieces: "Map_ChernarusSW" "Map_ChernarusNW" "Map_ChernarusSE" "Map_ChernarusNE"
    -1/2 Map Pieces: "Map_ChernarusW" "Map_ChernarusE" "Map_ChernarusS" "Map_Chernarus"
    THIS LIST WAS CREATED BY Raiin // MPGH

    (I'm sorry, for some reason I'm not allowed to post links, hence the lack of images and actual links to authors. - Sorry! I'll update with links and images as soon as I know how/can.)

    Now, to execute the actual scripts/hacks/whatever, you'll need to go into DayZ and open your menu, click configure, then video and that'll load your scripts/hacks/whatever!

    I'd advise doing this on a road, as the items spawn away from you, and can be quite hard to see.

    Thanks to Raiin for the class names!
    Thanks to Lystic for the tutorial on how to inject with Cheat Engine!
    And thanks to bowen2k12 for the code on how to spawn in the weapons!

    I hope this helps guys, just post if you need more help.
    Last edited by basger; 12-18-2013 at 11:06 AM.

  2. The Following 2 Users Say Thank You to basger For This Useful Post:

    Distraught (12-18-2013),SlightlyRed (12-18-2013)

  3. #2
    DizzyD's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    Aus
    Posts
    42
    Reputation
    10
    Thanks
    1
    My Mood
    Flirty
    @basger is good idea and helpful ty

  4. #3
    basger's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    7
    My Mood
    Amused
    Quote Originally Posted by DizzyD View Post
    @basger is good idea and helpful ty
    Thank you very much, glad some people find it helpful.

  5. #4
    doppelski's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Hi
    Is this undetected&Safe// already for the next day ? ? ?

    And thanks for this post this helped me a lot

  6. #5
    gudarks's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    basger when i search this ["onLoad",_this,"RscDisplayOptionsVideo",'GUI'] call compile preprocessfilelinenumbers "DZ\ui\scripts\initDisplay.sqf" the "value" on cheatengine comes up with color red this mean i'm doing something wrong?

  7. #6
    basger's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    7
    My Mood
    Amused
    Nope, just continue as I've said.

  8. #7
    Rogerxxroger's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    Currently in the northern territory in the wilderness.
    Posts
    29
    Reputation
    10
    Thanks
    8
    My Mood
    Psychedelic
    Thanks for your hard work, it helped a lot

  9. #8
    Confin3d's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    3,254
    Reputation
    748
    Thanks
    2,016
    All posts that don't have anything to do with the original post will be deleted.
    No longer use this website.

  10. #9
    TC_Racutt's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    I thought this is supposed to spawn it once? It literally creates a minefield around me of items for hundreds of people to grab.

  11. #10
    basger's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    7
    My Mood
    Amused
    I'm unsure of what you mean? How many items do you have in hint.sqf?

  12. #11
    oenigmaa's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Arma2OA.exe
    Posts
    544
    Reputation
    108
    Thanks
    118
    My Mood
    Devilish
    Not working for me after the newest update. As of about 30 minutes ago, it was working just fine.

    "The purpose of a business is to create a customer." - Peter Drucker


    Sooper Amazing PC Specs:
    GPU(S): 2x Signature 2 Superclocked GTX 680's
    CPU: i7 3770k @ 4.5ghz
    PSU: Corsair Platinum AX1200W
    MOBO: Asus Sabertooth Z77
    CASE: NZXT Phantom
    STORAGE: 1x 256 GB Intel SSD/1x 2TB Western Digital HDD

  13. The Following User Says Thank You to oenigmaa For This Useful Post:

    SlightlyRed (12-18-2013)

  14. #12
    Distraught's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    California
    Posts
    1,897
    Reputation
    659
    Thanks
    1,355
    Patched as of Update 113822. Shouldn't be long before another method comes up.

    /Closed

Similar Threads

  1. How tu use cheat engine 6.1 to PB IT?
    By IndioBanned in forum Point Blank Hacks
    Replies: 2
    Last Post: 09-19-2011, 01:36 AM
  2. [Tutorial] How to use Cheat Engine with crossfire (X-Trap Bypass)
    By sk83rdood in forum CrossFire Tutorials
    Replies: 11
    Last Post: 06-18-2011, 02:28 PM
  3. How to use Cheat Engine?
    By tryceo in forum Call of Duty Modern Warfare 2 Help
    Replies: 2
    Last Post: 01-18-2010, 09:51 PM
  4. How To Use Cheat Engine 5.5 With Pinball
    By comon trade in forum General Game Hacking
    Replies: 2
    Last Post: 12-20-2009, 08:37 PM
  5. Video how to use cheat engine on DF
    By iowni1 in forum BattleOn Games Hacks, Cheats & Trainers
    Replies: 0
    Last Post: 12-23-2008, 03:22 AM