GogoLoot

GogoLoot

34.6k Downloads

Copy Changes to About Tab

Gogo1951 opened this issue · 1 comments

commented

image

        ["about"] = function(widget, group)
            labelLarge(widget, "Don't Let Loot Slow Down Your Zug!")

            spacer(widget)

            label(widget, "GogoLoot was designed to help speed up the looting process by automating some of the Master Looter and Group Loot settings.")
            
            spacer2(widget)
            
            labelLarge(widget, "Tips & Tricks")
            
            spacer(widget)
            
            labelNormal(widget, "• Hold Shift while looting to disable GogoLoot for that corpse.")
            labelNormal(widget, "• To keep momentum during a raid, have your Master Looter come with empty bags so they can scoop up all the gear and hand it out at the end.")
            labelNormal(widget, "• For faster raid clears, set the threshold to gray (poor). This will allow your raiders to focus on moving in one direction towards the next boss, not having to run back randomly when they see sparkles.")

            spacer2(widget)
            
            labelLarge(widget, "Feedback")

            spacer(widget)
 
            labelNormal(widget, "If you have feedback, feel free to share it on Discord.")
            --labelNormal(widget, "https://github.com/Gogo1951/GogoLoot/issues/")
            local box = AceGUI:Create("EditBox")
            box:DisableButton(true)
            box:SetFullWidth(true)
            box:SetText("https://discord.gg/GegY9JMuKQ")
            widget:AddChild(box)
            spacer2(widget)

            labelNormal(widget, "If you find any bugs, please report them on GitHub.")
            --labelNormal(widget, "https://github.com/Gogo1951/GogoLoot/issues/")
            local box = AceGUI:Create("EditBox")
            box:DisableButton(true)
            box:SetFullWidth(true)
            box:SetText("https://github.com/Gogo1951/GogoLoot/issues/")
            widget:AddChild(box)

            spacer2(widget)
            
            labelLarge(widget, "Creators")

            spacer(widget)

            labelNormal(widget, "• Gogo (Mankrik-US).")
            labelNormal(widget, "• Aero (Earthfury-US). Aero was also the creator of Questie.")
            labelNormal(widget, "• Special thanks to Codzima (Stonespine-EU). Codzima was also the creator of SoftRes.It.")

        end
commented

Works!