Modding Help Magnet range

Discussion in 'Starbound Modding' started by Dirmagnos, Mar 20, 2019.

  1. Dirmagnos

    Dirmagnos Void-Bound Voyager

    I am interested in any information about range that loose items get pulled towards player.
    I cant find any mods that deal with this or any information in general. Is it even moddable ?
    thx
     
  2. projectmayhem

    projectmayhem Spaceman Spiff

    This is from itemdrop.config -- Im guessing pickupDistance is what you are looking for.

    Code:
    {
      "randomizedDistance" : 1.0,
      "randomizedSpeed" : 5.0,
      "throwSpeed" : 30.0,
      "throwIntangibleTime" : 1.0,
      "velocity" : 60,
      "velocityApproach" : 300,
      "pickupDistance" : 1.5,
      "combineChance" : 0.02,
      "combineRadius" : 0.5,
      "afterTakenLife" : 2.0,
    
      "movementSettings" : {
        "enableSurfaceSlopeCorrection" : true,
        "maximumCorrection" : 5
      }
    }
    
     

Share This Page