ARK: Survival Evolved

ARK: Survival Evolved

View Stats:
Valkyrie Apr 6, 2018 @ 8:03am
Aberation engrams on Ragnarok
So I'm trying to create a custom engram list, which for the most part has been successful.

I tried to enable a few aberation engrams and remove the engram prerequisites in the hopes that I could learn and craft them...
I altered the crafting requirements as well.

So looking and searching through the engrams, those items are nowhere to be seen (shag rug, portable rope ladder, climbing pick)
However when I spawn in the blueprints for them, they reflect the custom crafting requirements.

I was kind of hoping it would be simple(ish) to make the engram unlockable.

Does anyone have any insight into this? I realise I can use admin commands to spawn them in, but a functioning engram list was my main goal.

Edit: I'd also like to keep my mod list minimal, especially since it's only for a couple of items.
Currently testing in SP before I try it in my server for friends, if that makes a difference...
Last edited by Valkyrie; Apr 6, 2018 @ 8:07am
Originally posted by Arksanity.com:
That is the wrong answer...
This is the right answer...

You can auto-unlock engrams on any map, regardless if that map would not let you learn those engrams. We use that on our TI server, to avoid using mods for unlocking engrams.

The code below will auto-unlock all Aberration engrams at survivor lvl 76. You could change it to the respective level in which engrams are available to learn, but that was too much of a hassle for me to do... However, this won't add any of the engrams to loot table/supply drops/beacons/etc... adding those is somewhat longer code...

// UnlockEngrams_AB EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_BasiliskSaddle_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ChargeBattery_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ChargeLantern_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ClimbingPick_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_Fishbasket_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_GasCollector_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_Glider_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_GlowStick_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_HazardSuit_Boots_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_HazardSuit_Chest_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_HazardSuit_Gloves_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_HazardSuit_Helmet_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_HazardSuit_Pants_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_KarkinoSaddle_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_MetalCliffPlatform_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_Pliers_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_PortableRopeLadder_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_RavagerSaddle_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_RollratSaddle_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ShadowDrakeSaddle_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ShagRug_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_StoneCliffPlatform_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_WoodElevator_Switch_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_WoodElevator_Track_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_WoodElevatorPlatform_Large_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_WoodElevatorPlatform_Medium_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_WoodElevatorPlatform_Small_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ZiplineAmmo_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ZiplineMotor_C",LevelToAutoUnlock=76)
< >
Showing 1-15 of 36 comments
DrathDragoon33 Apr 6, 2018 @ 8:09am 
Engrams can only be learned on the map they attached too, if they have that requirement.

In such cases changing the cost will not make it available on the wrong map. It will only change the cost. Mods are required to make them available on maps that they wouldn't otherwise be.

The only other way to have them on a map they aren't attached to is to use clusters amd transferring.
KitsuneShiro Apr 6, 2018 @ 8:10am 
You could add the bp to the beacons.
Valkyrie Apr 6, 2018 @ 8:14am 
I was afraid that might be the case. Thanks for your quick responce!
DrathDragoon33 Apr 6, 2018 @ 8:16am 
Glad we could help.
The author of this thread has indicated that this post answers the original topic.
Arksanity.com Apr 6, 2018 @ 8:53am 
That is the wrong answer...
This is the right answer...

You can auto-unlock engrams on any map, regardless if that map would not let you learn those engrams. We use that on our TI server, to avoid using mods for unlocking engrams.

The code below will auto-unlock all Aberration engrams at survivor lvl 76. You could change it to the respective level in which engrams are available to learn, but that was too much of a hassle for me to do... However, this won't add any of the engrams to loot table/supply drops/beacons/etc... adding those is somewhat longer code...

// UnlockEngrams_AB EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_BasiliskSaddle_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ChargeBattery_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ChargeLantern_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ClimbingPick_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_Fishbasket_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_GasCollector_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_Glider_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_GlowStick_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_HazardSuit_Boots_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_HazardSuit_Chest_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_HazardSuit_Gloves_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_HazardSuit_Helmet_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_HazardSuit_Pants_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_KarkinoSaddle_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_MetalCliffPlatform_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_Pliers_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_PortableRopeLadder_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_RavagerSaddle_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_RollratSaddle_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ShadowDrakeSaddle_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ShagRug_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_StoneCliffPlatform_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_WoodElevator_Switch_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_WoodElevator_Track_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_WoodElevatorPlatform_Large_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_WoodElevatorPlatform_Medium_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_WoodElevatorPlatform_Small_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ZiplineAmmo_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ZiplineMotor_C",LevelToAutoUnlock=76)
DrathDragoon33 Apr 6, 2018 @ 3:28pm 
I wasn't aware you could do that for a single engram. Just with the auto unlock all.

I don't think I have seen that on the wiki either.
Valkyrie Apr 6, 2018 @ 5:03pm 
So the same thing that they have already set up for the stone pick? I saw the config for that before I went to bed and started wondering about that...

Thanks so much!

Originally posted by DrathDragoon33:
I wasn't aware you could do that for a single engram. Just with the auto unlock all.

I don't think I have seen that on the wiki either.

There's a mod that makes use of it for different rolls in a RP sense. Impulse made it.
Last edited by Valkyrie; Apr 6, 2018 @ 5:05pm
Arksanity.com Apr 7, 2018 @ 12:00am 
Originally posted by DrathDragoon33:
I don't think I have seen that on the wiki either.

The wiki is dead. Whoever kept that up to date has obviously moved on to another game... It was in the patch notes though.

v273.62
https://ark.gamepedia.com/273.62
https://steamcommunity.com/app/346110/discussions/0/594820656447032287/
TheAstralHammer Oct 28, 2018 @ 3:50pm 
For some reason this is only unlocking some of the engrams for me. Anyone else have this issue?

EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ClimbingPick_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_Fishbasket_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_Glider_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_GlowStick_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_PortableRopeLadder_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_StoneCliffPlatform_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_WoodElevator_Switch_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_WoodElevator_Track_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_WoodElevatorPlatform_Large_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_WoodElevatorPlatform_Medium_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_WoodElevatorPlatform_Small_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ZiplineAmmo_C",LevelToAutoUnlock=76) EngramEntryAutoUnlocks=(EngramClassName="EngramEntry_ZiplineMotor_C",LevelToAutoUnlock=76)
Leslie Oct 28, 2018 @ 4:02pm 
What about the resources to craft or power?
Haven't seen any fungal wood or gas balls on Ragnarok.
Boomer Voncannon Oct 28, 2018 @ 4:05pm 
Originally posted by Leslie:
What about the resources to craft or power?
Haven't seen any fungal wood or gas balls on Ragnarok.
Can be crafted in a splus grinder.
Last edited by Boomer Voncannon; Oct 28, 2018 @ 4:05pm
Leslie Oct 28, 2018 @ 4:08pm 
What grinds into gas balls, Black Pearls?
Boomer Voncannon Oct 28, 2018 @ 4:14pm 
Dunno. I mostly grind fir gems and fungal wood to make zip lines and wingsuits
Leslie Oct 28, 2018 @ 4:22pm 
Pfffft. In my day we had to chew crystals and then poop our own gems. We colored them with koolaid. And fungal wood we had to harvest from the bottom of the swamp barehanded. One hand to harvest and the other hand fending off the Kaypros. Had to carry it back home on our backs, uphill, both ways.

You Nancies now grind it.
Vesuvius Oct 28, 2018 @ 4:38pm 
Apart from adding dinos....Cross-Aberration mod makes aberration resources craftable.
Last edited by Vesuvius; Oct 28, 2018 @ 4:38pm
< >
Showing 1-15 of 36 comments
Per page: 1530 50

Date Posted: Apr 6, 2018 @ 8:03am
Posts: 36