Pilfered Sweeper #251


  • Enhancement
Closed
  • Urtgard created this issue Jul 27, 2017
    Contributor
  • Urtgard added a tag Enhancement Jul 27, 2017
  • Urtgard posted a comment Aug 20, 2017

    ["Pilfered Sweeper"] = { cat = LEGION, type = ITEM, isToy = true, method = SPECIAL, name = L["Pilfered Sweeper"], itemId = 147867, chance = 100, coords = {{m=1021,x=47.8,y=67.3}} },

     

    The coords are the entrance to the cave with all the chests. You can add them to Scraps as well.

     

    Don't forget to edit the special detection in core.lua

     

    -- Handle opening Curious Wyrmtongue Cache
    if fishing and opening and lastNode and (lastNode == L["Curious Wyrmtongue Cache"]) then
      	local names = {"Scraps", "Pilfered Sweeper"}
    	for _, name in pairs(names) do
    		local v = self.db.profile.groups.items[name]
    		if v and type(v) == "table" and v.enabled ~= false then
    			if v.attempts == nil then v.attempts = 1 else v.attempts = v.attempts + 1 end
    			self:OutputAttempts(v)
    		end
    	end
    end

     

     

     
  • AllaraStarmist closed issue Sep 26, 2017

To post a comment, please login or register a new account.