Doesn't work for me, tried it yesterday on one already landed DT drop, and haven't seen the cyberware shard present, only carry weight one was present. Will try more later today.
I tried with both. First tried with "The Killing Moon", then loaded a previous saved and tried with "Black Steel "but neither options had the cyberware shard in the airdrops after Fire Starter
I couldn´t replicate it, i got one after the Fire Starter mission.
If you have CET installed, you could look at the airdrop container and run the script until you get a list with loottables ( you may have to look at it from a few different angles to get the right object). If you post them here, i can add the missing ones to the mod.
function GetLootTableNames() local Object = Game.GetTargetingSystem():GetLookAtObject(Game.GetPlayer(), false, false); if Object == nil then print(" \n \n No object found, look at object first, pls! \n \n "); return else local ObjectName = Object:ToString(); if ObjectName == "LootContainerObjectAnimatedByTransformWithFlare" then print(" \n \n Correct object found!\n \n ObjectName:\n "..ObjectName.."\n \n LootTables:"); for _, record in ipairs(Object.lootTables) do print(" "..TDBID.ToStringDEBUG(record)); end print(" \n \n "); else print(" \n \n Incorrect object found!\n \n ObjectName:\n "..ObjectName.." \n \n Try again pls! \n \n ") end end Object = nil; end GetLootTableNames()
14 comments
If you have CET installed, you could look at the airdrop container and run the script until you get a list with loottables ( you may have to look at it from a few different angles to get the right object). If you post them here, i can add the missing ones to the mod.
function GetLootTableNames() local Object = Game.GetTargetingSystem():GetLookAtObject(Game.GetPlayer(), false, false); if Object == nil then print(" \n \n No object found, look at object first, pls! \n \n "); return else local ObjectName = Object:ToString(); if ObjectName == "LootContainerObjectAnimatedByTransformWithFlare" then print(" \n \n Correct object found!\n \n ObjectName:\n "..ObjectName.."\n \n LootTables:"); for _, record in ipairs(Object.lootTables) do print(" "..TDBID.ToStringDEBUG(record)); end print(" \n \n "); else print(" \n \n Incorrect object found!\n \n ObjectName:\n "..ObjectName.." \n \n Try again pls! \n \n ") end end Object = nil; end GetLootTableNames()