Nazeem Posted November 23, 2021 Share Posted November 23, 2021 So I've been working on a mod, it basically adds component functionality to the miner helmet, and allows you to store bulbs inside, by making it a container however, it has lost the ability to take in fireflies as fuel, the tooltip action for fireflies is only to store it inside, i tried accessing the actions.lua to give adding fuel a higher priority, but my game just crashes, if anyone knows how to correctly change the priority of actions, if that is even allowed that would be pretty useful. if there is a totally different solution please let me know, Thanks in advance here is my modmain: GLOBAL.setmetatable(env, { __index = function(t, k) return GLOBAL.rawget(GLOBAL, k) end }) Assets = {Asset("ANIM", "anim/ui_cookpot_1x1.zip")} local ACTIONS = GLOBAL.ACTIONS local containers = require("containers") local params = containers.params ACTIONS.ACTIONS.ADDFUEL.data.priority = 10 params.miner = { widget = { slotpos = { Vector3(0, -18, 0),--0, 32 + 4, 0 }, slotbg = { { image = "slingshot_ammo_slot.tex" }, --image = "slingshot_ammo_slot.tex" }, animbank = "ui_cookpot_1x1", animbuild = "ui_cookpot_1x1", --[[animbank = "ui_cookpot_1x2", animbuild = "ui_cookpot_1x2",]] pos = Vector3(115, 45, 0), --Vector3(0, 15, 0), }, usespecificslotsforitems = true, type = "hand_inv", } function params.miner.itemtestfn(container, item, slot) return item:HasTag("lightbattery") --or item:HasTag("firefly") end --[[local function minerupdate(inst) inst.components.fueled:InitializeFuelLevel(468) end]] AddPrefabPostInit("minerhat", function(inst) if not TheWorld.ismastersim then return inst end inst:AddComponent("container") inst.components.container:WidgetSetup("miner") inst:AddComponent("preserver") inst.components.preserver:SetPerishRateMultiplier(GetModConfigData("Spoilage Rate"))--GetModConfigData("Preserver") --inst:AddComponent("updatelooper") --inst.components.updatelooper:AddOnWallUpdateFn(minerupdate) end) Link to comment https://forums.kleientertainment.com/forums/topic/135565-need-help-with-actions-priority-for-my-mod/ Share on other sites More sharing options...
IceNine99 Posted December 6, 2021 Share Posted December 6, 2021 Off topic but what on earth requires that __index re-definition at the top? Link to comment https://forums.kleientertainment.com/forums/topic/135565-need-help-with-actions-priority-for-my-mod/#findComment-1519386 Share on other sites More sharing options...
skittles sour Posted December 6, 2021 Share Posted December 6, 2021 What exactly is the crash at the moment? I would suggest that you make turn off the canbeopened in the container component, and make it automatically open when you equip it, and then automatically close when you unequip it, this would be a simpler fix than rearranging the action priorities. My guess is that you are crashing because the container widgets are not replicated correctly. Containers are tricky in DST and you could search up older forum posts concerning how replicate it correctly. Link to comment https://forums.kleientertainment.com/forums/topic/135565-need-help-with-actions-priority-for-my-mod/#findComment-1519393 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now