Jump to content

TimBH

Members
  • Posts

    54
  • Joined

  • Last visited

  • Days Won

    1

Status Replies posted by TimBH

  1. Hi Tim, not quite sure how to DM on this website but I saw that you had some experience with .ini files so I thought I’d get in contact :)

    I run an Xbox server and I’m trying to figure out if there’s a way to have the tekgrams unlocked for everyone at lvl 1 without having to do the whole spawn in a boss and forcekill scenario. So far I’ve been able to put the tekgram at lvl 1 but nobody can buy it.

    I’m also trying to find a way to have Element and Element shards drop from Dino’s or at the very least, beacons.

    I’ve seen a lot of servers with “Easy Tek” in their titles so I’m assuming somebody has figured out a way of making it happen.

    Hope to hear back from you and keep up the great work!

     

    Jayce

     

    1. TimBH

      TimBH

      Good Morning,

      In theory amending dino drop trees is pretty much the same as amending the loot drops, just a different class name however not all *.ini are functioning on the XB1 PC servers as yet so they may or may not work. As for amending the quantities yes you are correct just amend the MinQuantity= and the MaxQuauntity= values and restart. We considered doing the same thing, then Aberration dropped and players can make element there.

    2. (See 4 other replies to this status update)

  2. Hi Tim, not quite sure how to DM on this website but I saw that you had some experience with .ini files so I thought I’d get in contact :)

    I run an Xbox server and I’m trying to figure out if there’s a way to have the tekgrams unlocked for everyone at lvl 1 without having to do the whole spawn in a boss and forcekill scenario. So far I’ve been able to put the tekgram at lvl 1 but nobody can buy it.

    I’m also trying to find a way to have Element and Element shards drop from Dino’s or at the very least, beacons.

    I’ve seen a lot of servers with “Easy Tek” in their titles so I’m assuming somebody has figured out a way of making it happen.

    Hope to hear back from you and keep up the great work!

     

    Jayce

     

    1. TimBH

      TimBH

      Good Morning,

      In theory amending dino drop trees is pretty much the same as amending the loot drops, just a different class name however not all *.ini are functioning on the XB1 PC servers as yet so they may or may not work. As for amending the quantities yes you are correct just amend the MinQuantity= and the MaxQuauntity= values and restart. We considered doing the same thing, then Aberration dropped and players can make element there.

    2. (See 4 other replies to this status update)

  3. Hey TimBH I'm trying to add a few things to my drops on the nitrado servers, how do I go about doing that?

    I would like to add a chance to get 5 dodo kibble or 5 veggie cakes or a Tera saddle in green drops

    Stone building materials like 5 foundations, 10 walls, 5 ceilings, 1 reinforced door, 1 doorway and a canteen for white drops

    Blue drops having 200 cementing paste or flak armor or metal tools primitive and a chance for it to be apprentice 

     

    Can this be done? Sorry ik it's alot

    1. TimBH

      TimBH

      Yes this is very easy to achieve actually!

      I will write you some code and send it back in a few hours, once you see how its constructed you will easily be able to add more and amend quantities etc.

  4. Hi Tim, not quite sure how to DM on this website but I saw that you had some experience with .ini files so I thought I’d get in contact :)

    I run an Xbox server and I’m trying to figure out if there’s a way to have the tekgrams unlocked for everyone at lvl 1 without having to do the whole spawn in a boss and forcekill scenario. So far I’ve been able to put the tekgram at lvl 1 but nobody can buy it.

    I’m also trying to find a way to have Element and Element shards drop from Dino’s or at the very least, beacons.

    I’ve seen a lot of servers with “Easy Tek” in their titles so I’m assuming somebody has figured out a way of making it happen.

    Hope to hear back from you and keep up the great work!

     

    Jayce

     

    1. TimBH

      TimBH

      To get the class name of any of the engrams from all of ARK this is a handy resource:

      https://ark.gamepedia.com/Engram_Classnames

       

      Now element - I have constructed you some code which will basically amend the contents of a White Drop - as these can be opened from level 3 it seemed the best choice.

      The code below with either give (in a white drop) 20 x element, or 100 element shards with a 50/50 chance of one or the other dropping.  I can amend as you want mind you.

      ConfigOverrideSupplyCrateItems=(SupplyCrateClassString="SupplyCrate_Level03_C",MinItemSets=1,MaxItemSets=1,NumItemSetsPower=1,bSetsRandomWithoutReplacement=true,ItemSets=((SetName="Element",MinNumItems=1,MaxNumItems=1,NumItemsPower=1,SetWeight=1,bItemsRandomWithoutReplacement=true,ItemEntries=((EntryWeight=0.5,ItemClassStrings=("PrimalItemResource_Element_C"),ItemsWeights=(1),MinQuantity=20,MaxQuantity=20,MinQuality=0,MaxQuality=0,bForceBlueprint=false,ChanceToBeBlueprintOverride=0),(EntryWeight=0.5,ItemClassStrings=("PrimalItemResource_ElementShard_C"),ItemsWeights=(1),MinQuantity=100,MaxQuantity=100,MinQuality=0,MaxQuality=0,bForceBlueprint=false,ChanceToBeBlueprintOverride=0)))))

       

       

       

    2. (See 4 other replies to this status update)

  5. Hi Tim, not quite sure how to DM on this website but I saw that you had some experience with .ini files so I thought I’d get in contact :)

    I run an Xbox server and I’m trying to figure out if there’s a way to have the tekgrams unlocked for everyone at lvl 1 without having to do the whole spawn in a boss and forcekill scenario. So far I’ve been able to put the tekgram at lvl 1 but nobody can buy it.

    I’m also trying to find a way to have Element and Element shards drop from Dino’s or at the very least, beacons.

    I’ve seen a lot of servers with “Easy Tek” in their titles so I’m assuming somebody has figured out a way of making it happen.

    Hope to hear back from you and keep up the great work!

     

    Jayce

     

    1. TimBH

      TimBH

      Good Evening Jayce,

      There is a simple piece of code that will allow what you want - but it sort of depends on what you really want.

      Adding this to the Game.ini file will unlock all the engrams at each level up - so on the engram tree for level 10 for instance as soon as the player reaches level 10 it will unlock everything for that level.  It also comes with the benefit of unlock ALL TeK at level one.

      bAutoUnlockAllEngrams=true

      Or for something more complex you can use this code (however this will need a line per engram that you want to assign).

      EngramEntryAutoUnlocks=(EngramClassName="<index>",LevelToAutoUnlock=<value>)

      Where <index> is the blueprint of the engram you want to unlock i.e. EngramEntry_TekBoots_C

      and <value> is simply the level you want it to automatically unlock at.

       

      Hope that helps.

       

      Tim

    2. (See 4 other replies to this status update)

×
×
  • Create New...