ARK: Survival Evolved

ARK: Survival Evolved

Supply Drop Grenades
 This topic has been pinned, so it's probably important
SonnySynth 17 Feb, 2017 @ 4:08am
Engrams Guide
Engram Overrides
3 Step Guide to Engram overrides

1.Code is placed in your \ARK\ShooterGame\Saved\Config\WindowsNoEditor\Config\game.ini file

2.Entered as a single line of code per engram

3.Only Once per Engram entry

Example
OverrideNamedEngramEntries=(EngramClassName="?",EngramHidden=true/false,EngramPointsCost=X,EngramLevelRequirement=X,RemoveEngramPreReq=true/false)
This code can be broken down into 5 elements, each seperated with a comma and enclosed inside the brackets:

The 5 Elements
1.EngramClassName="?"
Replace the ? (keeping the quotes) with your choice of engram entry code
(always starts with EngramEntry and ends with _C)

2.EngramHidden=true/false
Enables(false) or Disables(true) the Engram in your engram list

3.EngramPointsCost=X
Replace the X to set the number of Engram Points(EP's) it will cost to unlock
Only works if you set EngramHidden=false

4.EngramLevelRequirement=X
Replace the X to set the Player Level needed to unlock the Engram
Only works if you set EngramHidden=false

5.RemoveEngramPreReq=true/false
Removes(true) or Retains(false) the default Prerequisites to make the engram available
Example the Metal Hatchet's Prerequisit is the Stone Hatchet

Engram Entry Codes
White Supply Drop Grenade (Level 3 Double)
EngramEntry_GasGrenade_SupplyDropWhite_C

Green Supply Drop Grenade (Level 15 Double)
EngramEntry_GasGrenade_SupplyDropGreen_C

Blue Supply Drop Grenade (Level 25 Double)
EngramEntry_GasGrenade_SupplyDropBlue_C

Purple Supply Drop Grenade (Level 35 Double)
EngramEntry_GasGrenade_SupplyDropPurple_C

Yellow Supply Drop Grenade (Level 45 Double)
EngramEntry_GasGrenade_SupplyDropYellow_C

Red Supply Drop Grenade (Level 60 Double)
EngramEntry_GasGrenade_SupplyDropRed_C

Sea Crate Drop Grenade
EngramEntry_GasGrenade_SeaCrate_C

Cave Tier1(Green) Drop Grenade
EngramEntry_GasGrenade_SupplyCrate1_C

Cave Tier2(Blue) Drop Grenade
EngramEntry_GasGrenade_SupplyCrate2_C

Cave Tier3(Yellow) Drop Grenade
EngramEntry_GasGrenade_SupplyCrate3_C

Cave Tier4(Red) Drop Grenade
EngramEntry_GasGrenade_SupplyCrate4_C

Example
OverrideNamedEngramEntries=(EngramClassName="EngramEntry_GasGrenade_SeaCrate_C",EngramHidden=false,EngramPointsCost=30,EngramLevelRequirement=90,RemoveEngramPreReq=False)

The above code configures the Sea Crate Drop Grenades, they are available to unlock at level 90 for 30 EP's and require the original prerequisites from the mod
Last edited by SonnySynth; 17 Feb, 2017 @ 4:11am