Author Archives: Mezzo
Adding Custom Crafting Requirements(Specific Item in Inventory) To An Item
You can use the “BP AllowCrafting” function on a item to add custom checks before the item gets crafted. Returning an empty string allows the item to craft, any other string will show up as a message to the player …

Ark Modding: Where do i start? Resources for ADK/UE4 Beginners
This is a compilation aimed at absolute UE4/ADK beginners. Im trying to point out the most important tutorials and resources(other than this site) that will get you started:
Essential UE4 Tutorials:
These are the official Unreal Engine tutorial i consider …
Check Dino Inventory For Specific Item And Apply Status Changes
Adds a looping timer when the dino is tamed(Event BPSetup Tamed). Checks the current health() against the max health(). If current health is lower checks if there is any RawMeat in the Inventory(). If there is meat it will remove …

jslay’s Git Repository
Source files to multiple project source files by jslay :
- AdvancedSpyglass
- SlayRideLiftKit2.0
- ReusableParachute
- TurretRemote

ARK DevKit: Tips and Tricks
ARK DevKit: Tips and Tricks by DavidBC and others. A collection of useful tips and trick for the DevKit.…
Give multiple new items from item use
The example is a dye pack that gives you 5 of each dye when the pack is used. The “DyeArray” variable needs to be created and holds the items you want to give when the item is used.…

ADK Tutorial Blueprint Examples
Mezzos github repository with different commented blueprint graph examples:…
Modify status values from item use
Checks if it is a dino and if it is tamed or if it is a human. Applies status changes only if the dino is tamed.…

How to spawn and equip items to a dino or character
Tutorial by Samson F. on how to spawn and equip items to dinos/characters from the graph:…

How to add and use a custom menu entry on the radial menu
Tutorial by Mezzo on how to add a custom menu entry to the radial/multiuse menu:…
Get the level of a dino character
Gets the current level of a dino. You can also use this to get the level of a player if you change the cast to “PrimalCharacter”.…
Live Debug Macro
This macro lets you debug values live in the game with a cooked mod through server-wide notifications.
NOTE: Only works if called on server-side!…