Page 2 of 2 FirstFirst
1
2
  1. #21
    Indeed, that was unexpected.
    Just glad I didn't simply dismiss it as a waste of time, just thought it was unlikely.
    Quote Originally Posted by DeadmanWalking View Post
    Your forgot to include the part where we blame casuals for everything because blizzard is catering to casuals when casuals got jack squat for new content the entire expansion, like new dungeons and scenarios.
    Quote Originally Posted by Reinaerd View Post
    T'is good to see there are still people valiantly putting the "Ass" in assumption.

  2. #22
    Quote Originally Posted by ComputerNerd View Post
    Indeed, that was unexpected.
    Just glad I didn't simply dismiss it as a waste of time, just thought it was unlikely.
    You are right. It is pretty unlikely to get a helpfull response to such a necro.
    Good that all my posts have lifetime support

  3. #23
    Quote Originally Posted by Urtgard View Post
    You are right. It is pretty unlikely to get a helpfull response to such a necro.
    Good that all my posts have lifetime support
    Be careful what you offer, someone may take you up on it.
    I am sure there has to be a reasonable limit, though it isn't some hard fixed duration.
    Each to their own.

    I vary addons too often to realistically be able to offer anything beyond advice from such a long period ago.
    Quote Originally Posted by DeadmanWalking View Post
    Your forgot to include the part where we blame casuals for everything because blizzard is catering to casuals when casuals got jack squat for new content the entire expansion, like new dungeons and scenarios.
    Quote Originally Posted by Reinaerd View Post
    T'is good to see there are still people valiantly putting the "Ass" in assumption.

  4. #24
    Erhm..jumps in. When I open my bank, do you guys also still get spammed? Been going on for months
    Youtube channel: https://www.youtube.com/c/djuntas ARPG - RTS - MMO

  5. #25
    Deleted
    I also have a question - I was liking Arkinventory quite a lot, eventhough it was heavy, however I switched to Adibags because it seems Ark puts some kind of overlay ontop of the icons of items, and hides my "CanIMogIt" checkmarks.

    Is there a way to disable it?

  6. #26
    Quote Originally Posted by iforgotmyaccount View Post
    I also have a question - I was liking Arkinventory quite a lot, eventhough it was heavy, however I switched to Adibags because it seems Ark puts some kind of overlay ontop of the icons of items, and hides my "CanIMogIt" checkmarks.

    Is there a way to disable it?
    According the addon's Github, since bag addons are often replacing blizzard's frames the addon needs to have specific support coded for each of them.
    Arkinventory support is planned, but as of 2 months ago that only extended to Void Storage, so the last update on that says.

    https://gitlab.com/toreltwiddler/CanIMogIt/milestones/2
    https://gitlab.com/toreltwiddler/CanIMogIt/issues/40
    Quote Originally Posted by DeadmanWalking View Post
    Your forgot to include the part where we blame casuals for everything because blizzard is catering to casuals when casuals got jack squat for new content the entire expansion, like new dungeons and scenarios.
    Quote Originally Posted by Reinaerd View Post
    T'is good to see there are still people valiantly putting the "Ass" in assumption.

  7. #27
    Deleted
    Quote Originally Posted by ComputerNerd View Post
    According the addon's Github, since bag addons are often replacing blizzard's frames the addon needs to have specific support coded for each of them.
    Arkinventory support is planned, but as of 2 months ago that only extended to Void Storage, so the last update on that says.

    https://gitlab.com/toreltwiddler/CanIMogIt/milestones/2
    https://gitlab.com/toreltwiddler/CanIMogIt/issues/40
    Damn, thank you for the informative answer!
    I was trying to find something about it, but nothing came up.

    I will wait it out I guess!

  8. #28
    Caerdon Wardrobe has a plugin that shows the mark like canimogit in ArkInventory.

  9. #29
    Quote Originally Posted by iforgotmyaccount View Post
    I also have a question - I was liking Arkinventory quite a lot, eventhough it was heavy, however I switched to Adibags because it seems Ark puts some kind of overlay ontop of the icons of items, and hides my "CanIMogIt" checkmarks.

    Is there a way to disable it?
    I'm not an active player at the moment, so I don't no wether this still works. Can I Mogit icons in bag and bank.
    Paste this in the itemOverlay.lua

    Code:
    if IsAddOnLoaded("ArkInventory") == true then
        local function ArkInventory_ContainerFrame_OnUpdate(self, elapsed)
            -- Sets the icon overlay for the current bag and slot.
            if not CheckOptionEnabled(self) then return end
            if ArkInventory.Frame_Item_GetDB(self) then
                SetIcon(self, CanIMogIt:GetTooltipText(ArkInventory.Frame_Item_GetDB(self).h))
            end
        end
    
        --Bags
        for i=1,NUM_CONTAINER_FRAMES do
            for j=1,MAX_CONTAINER_ITEMS do
                local frame = _G["ARKINV_Frame1ScrollContainerBag"..i.."Item"..j]
                AddToFrame(frame, ArkInventory_ContainerFrame_OnUpdate)
            end
        end
    
        --Bank
        local t = 0
        ARKINV_Frame3:HookScript("OnUpdate", function()
            if GetTime() - t > 2 then
                t = GetTime()
                for i=1,8 do
                    for j=1,MAX_CONTAINER_ITEMS do
                        local frame = _G["ARKINV_Frame3ScrollContainerBag"..i.."Item"..j]
                        if frame then
                            if not frame.CanIMogItIcon then
                                frame.CanIMogItIcon = frame:CreateFontString(nil, "OVERLAY", "NumberFontNormal")
                                frame.CanIMogItIcon:SetPoint("TOPLEFT", 2, -2)
                            end
                            ArkInventory_ContainerFrame_OnUpdate(frame)
                        end
                    end
                end
            end
        end)
    end

  10. #30
    Quote Originally Posted by iforgotmyaccount View Post
    I also have a question - I was liking Arkinventory quite a lot, eventhough it was heavy, however I switched to Adibags because it seems Ark puts some kind of overlay ontop of the icons of items, and hides my "CanIMogIt" checkmarks.

    Is there a way to disable it?
    My old code stopped working. Put this in the addons.lua for icons in your bags and bank.
    Code:
    if IsAddOnLoaded("ArkInventory") then
        function ArkInventoryItemButton_CIMIUpdateIcon(self)
            if not self or not self:GetParent() then return end
            if not CIMI_CheckOverlayIconEnabled(self) then
                self.CIMIIconTexture:SetShown(false)
                self:SetScript("OnUpdate", nil)
                return
            end
            self = self:GetParent()
            if ArkInventory.Frame_Item_GetDB(self) then
                CIMI_SetIcon(self.CanIMogItOverlay, ArkInventoryItemButton_CIMIUpdateIcon, CanIMogIt:GetTooltipText(ArkInventory.Frame_Item_GetDB(self).h))
            end
        end
    
        function CIMI_ArkInventoryAddFrame(self, event, addonName)
            if event ~= "PLAYER_LOGIN" and event ~= "BANKFRAME_OPENED" and not CIMIEvents[event] then return end
            -- Add to frames
            -- Bags
            for i=1,NUM_CONTAINER_FRAMES do
                for j=1,MAX_CONTAINER_ITEMS do
                    local frame = _G["ARKINV_Frame1ScrollContainerBag"..i.."Item"..j]
                    CIMI_AddToFrame(frame, ArkInventoryItemButton_CIMIUpdateIcon)
                end
            end
            -- Bank
            C_Timer.After(.5, function() CIMI_ArkInventoryAddBankFrame() end)
        end
        hooksecurefunc(CanIMogIt.frame, "HookItemOverlay", CIMI_ArkInventoryAddFrame)
    
        function CIMI_ArkInventoryEvents(self, event, ...)
            if not CIMIEvents[event] then return end
            -- Update event
            CIMI_ArkInventoryUpdate() 
        end
        hooksecurefunc(CanIMogIt.frame, "ItemOverlayEvents", CIMI_ArkInventoryEvents)
    
        function CIMI_ArkInventoryUpdate()
            for i=1,NUM_CONTAINER_FRAMES do
                for j=1,MAX_CONTAINER_ITEMS do
                    local frame = _G["ARKINV_Frame1ScrollContainerBag"..i.."Item"..j]
                    if frame then
                        C_Timer.After(.5, function() ArkInventoryItemButton_CIMIUpdateIcon(frame.CanIMogItOverlay) end)
                    end
                end
            end
            for i=1,8 do
                for j=1,MAX_CONTAINER_ITEMS do
                    local frame = _G["ARKINV_Frame3ScrollContainerBag"..i.."Item"..j]
                    if frame then
                        C_Timer.After(.5, function() ArkInventoryItemButton_CIMIUpdateIcon(frame.CanIMogItOverlay) end)
                    end
                end
            end
        end
    
        -- If you change characters or open the bank/bags with ArkInventory
        local ArkInventoryChange_IsHooked = nil
        local function CIMI_ArkInventoryHook()
            if ArkInventoryChange_IsHooked == nil then
                ArkDewdrop30102Level0:HookScript("OnHide", function() CIMI_ArkInventoryUpdate(); C_Timer.After(.5, function() CIMI_ArkInventoryAddBankFrame() end) end)
                ArkInventoryChange_IsHooked = true
            end
        end
        ARKINV_Frame1TitleActionButton5:HookScript("OnClick", CIMI_ArkInventoryHook)
        ARKINV_Frame1TitleActionButton6:HookScript("OnClick", CIMI_ArkInventoryHook)
    
        function CIMI_ArkInventoryAddBankFrame()
            for i=1,8 do
                for j=1,MAX_CONTAINER_ITEMS do
                    local frame = _G["ARKINV_Frame3ScrollContainerBag"..i.."Item"..j]
                    CIMI_AddToFrame(frame, ArkInventoryItemButton_CIMIUpdateIcon)
                end
            end
        end       
    end

  11. #31
    Does anyone know how to have ArkInventory show the bag names that I assigned to them?

  12. #32
    Quote Originally Posted by Lery View Post
    Does anyone know how to have ArkInventory show the bag names that I assigned to them?
    Config -> Settings -> Bag -> Bars Tabs -> Name -> Tick 'Enabled'. You can modify its position and colour in there.

    Repeat for your bank.

  13. #33
    Quote Originally Posted by Matchu View Post
    Config -> Settings -> Bag -> Bars Tabs -> Name -> Tick 'Enabled'. You can modify its position and colour in there.

    Repeat for your bank.
    Thanks sparky!

  14. #34
    Keyboard Turner Yeaboii's Avatar
    7+ Year Old Account
    Join Date
    Feb 2017
    Location
    Western Australia
    Posts
    8
    is there any chance you can upload again wont work for some reason

  15. #35
    You talking to me?

    I could upload it tomorrow.

  16. #36
    Keyboard Turner Yeaboii's Avatar
    7+ Year Old Account
    Join Date
    Feb 2017
    Location
    Western Australia
    Posts
    8
    Quote Originally Posted by urtgard View Post
    you talking to me?

    I could upload it tomorrow.

    yes pleaes!

  17. #37
    Deleted
    Is there any chance - that somebody post a profile for BFA?

  18. #38
    Keyboard Turner Yeaboii's Avatar
    7+ Year Old Account
    Join Date
    Feb 2017
    Location
    Western Australia
    Posts
    8
    Quote Originally Posted by Urtgard View Post
    You talking to me?

    I could upload it tomorrow.
    are you able to still do this ?

  19. #39
    Quote Originally Posted by Yeaboii View Post
    are you able to still do this ?
    https://www.mediafire.com/file/rlalr...ntory.lua/file

  20. #40
    Keyboard Turner Yeaboii's Avatar
    7+ Year Old Account
    Join Date
    Feb 2017
    Location
    Western Australia
    Posts
    8
    Has anyone got a rule for Transmog gear or even Low Ilvl Gear box im unsure on how to do this

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •