饥荒mod吧 关注:57,828贴子:235,544
  • 20回复贴,共1

『17-03-16』【问题求助】精灵公主MOD和装备栏6扩展MOD的问题

只看楼主收藏回复

装备栏扩展MOD是5格装备栏
精灵公主的专属海盗箱子是背包但是装备在了护甲那一栏
求助把这个背包放到该放的地方


IP属地:江苏1楼2017-03-16 18:03回复
    _G=GLOBAL
    require = _G.require
    rawget = _G.rawget
    EQUIPSLOTS=_G.EQUIPSLOTS
    --Detect is there any slot mods already enabled.
    if EQUIPSLOTS.BACK ~= nil or EQUIPSLOTS.NECK ~= nil then
    return --Do nothing. Exit immediately
    end
    Assets =
    {
    Asset("IMAGE", "images/slots5.tex"),
    Asset("ATLAS", "images/slots5.xml"),
    }
    EQUIPSLOTS.BACK = "back"
    EQUIPSLOTS.NECK = "neck"
    AddComponentPostInit("inventory", function(self,inst)
    self.numequipslots = 5
    end)
    --Thunder Party, Sunny, Additional Equipment, Tiny Alchemy Powers
    amulets = {"amulet", "blueamulet", "purpleamulet", "orangeamulet", "greenamulet", "yellowamulet", --standard
    "blackamulet", "pinkamulet", "whiteamulet", "endiaamulet", "grayamulet", "broken_frosthammer",
    "musha_egg", "musha_egg1", "musha_egg2", "musha_egg3", "musha_egg8", "musha_eggs1", "musha_eggs2", "musha_eggs3",
    } --mods
    for i,v in ipairs(amulets) do
    AddPrefabPostInit(v,function(inst)
    if inst.components.equippable then
    inst.components.equippable.equipslot = EQUIPSLOTS.NECK
    end
    end)
    end
    --Special tweak (Flashlight and Batteries)
    AddPrefabPostInit("batteries",function(inst)
    if not inst.components.equippable then
    inst:AddComponent("equippable")
    end
    inst.components.equippable.equipslot = EQUIPSLOTS.NECK
    end)
    backpacks = {"backpack", "piggyback", "krampus_sack", "icepack", "mailpack", "thatchpack", "piratepack", "spicepack", "spicepack", --standard
    "seasack", --new
    "bunnyback", "wolfyback", "sunnybackpack", "frostback", } --mod
    for i,v in ipairs(backpacks) do
    AddPrefabPostInit(v,function(inst)
    if inst.components.equippable then
    inst.components.equippable.equipslot = EQUIPSLOTS.BACK
    end
    end)
    end
    AddClassPostConstruct("screens/playerhud", function(self)
    local oldfn = self.SetMainCharacter
    function self:SetMainCharacter(maincharacter,...)
    oldfn(self, maincharacter,...)
    if not(self.controls and self.controls.inv) then
    print("ERROR: Can't inject in screens/playerhud.")
    return
    end
    self.controls.inv:AddEquipSlot(EQUIPSLOTS.BACK, "images/slots5.xml", "back.tex")
    self.controls.inv:AddEquipSlot(EQUIPSLOTS.NECK, "images/slots5.xml", "neck.tex")
    if self.controls.inv.bg then
    self.controls.inv.bg:SetScale(1.25,1,1.25)
    end
    local bp = maincharacter.components.inventory:GetEquippedItem(EQUIPSLOTS.BACK)
    if bp and bp.components.container then
    bp.components.container:Close()
    bp.components.container:Open(maincharacter)
    end
    end
    end)
    --Fix resurrect behaviour:
    do
    local comp_res = require "components/resurrectable"
    local comp_inv = require "components/inventory"
    local fix_once = nil --While hooking fix only once. May be not compatible with some mods.
    local old_GetEquippedItem = comp_inv.GetEquippedItem
    function comp_inv:GetEquippedItem(slot,...)
    if fix_once ~= nil then
    fix_once = nil
    local item = old_GetEquippedItem(self,EQUIPSLOTS.NECK,...)
    if item ~= nil and item.prefab == "amulet" then --We need to hook only amulet.
    return item
    end
    end
    return old_GetEquippedItem(self,slot,...)
    end
    --Fixing behaviour
    local old_FindClosestResurrector = comp_res.FindClosestResurrector
    function comp_res:FindClosestResurrector(...)
    fix_once = true
    return old_FindClosestResurrector(self,...)
    end
    local old_CanResurrect = comp_res.CanResurrect
    function comp_res:CanResurrect(...)
    fix_once = true
    return old_CanResurrect(self,...)
    end
    local old_DoResurrect = comp_res.DoResurrect
    function comp_res:DoResurrect(...)
    fix_once = true
    return old_DoResurrect(self,...)
    end
    --Fixing states for resurrection.
    AddSimPostInit(function()
    if not rawget(_G,"SGManager") then
    print("ERROR: Not a DS game.")
    return --Not a DS game.
    end
    for instance,_ in pairs(_G.SGManager.instances) do
    if(instance.sg.name == "wilson") then
    for k,v in pairs(instance.sg.states) do
    if(v.name == "amulet_rebirth") then
    local old_fn = v["onexit"]
    v["onexit"] = function(...) --Hook the function. Don't replace it
    fix_once = true
    return old_fn(...)
    end
    break
    end
    end
    break
    end
    end
    end)
    end


    IP属地:江苏2楼2017-03-16 18:03
    回复
      (联机版会不会崩溃不知道哈,我用的单机版)在五格装备MOD的“modmain.lua”文件内的“AddPrefabPostInit("piggyback", backpackpostinit)”附近添加“AddPrefabPostInit("pirateback", backpackpostinit)”语句,可以使海盗箱子放入背包栏。
      其实语句很简单,就是艾玛!一看怎么什么piggyback猪~~什么鬼的,然后就按照同样的格式把想放在背包栏的东西的名字填进去了......不出意外的达到了效果。
      语句上方的一组是项链,什么椰楼啊,布路啊,瑞得啊,的单词还是看得懂的,结果就这周吧,把亚索的项链添加进语句,就真的带到项链框里了。但是,什么武器放帽子什么鬼的会使游戏崩溃,头顶背包也会崩溃好像。


      IP属地:四川3楼2017-03-19 00:34
      收起回复
        另外,你最好自己添加,因为,我之前发的是我自己用的,时间久远,MOD这玩意儿,作者心情好了更新一下,心情不好了更新一下,有时间了更新一下,没时间了更新一下,被男朋友女朋友揍了更新一下,万一下下来的不能用,以前能用的还手贱删除的话就有点得不偿失了。
        所以,直接修改你现在用的五格MOD是最有效且最聪明的办法。


        IP属地:四川4楼2017-03-19 00:49
        收起回复
          楼主求资源


          IP属地:广东来自Android客户端10楼2017-07-13 07:22
          回复