View Single Post
03/14/16, 01:15 PM   #12
Wandamey
Guest
Posts: n/a
The error when you link is not from the addons.
It's the same cause, but we can't do anything about it on our own.

Just wait and avoid linking from the gear crafting stations

Edit: well maybe we could rewrite the function in cause in a mini-patch


the fix below is included in the next post atached zip. (thx votan)
(you dont need to paste it yourself, just use the patch addon that votan linked)

-- just put the unzipped folder in Documents/Elders Scrolls Online/live(eu)/AddOns

/live(eu) means : "live" for NA or "liveeu" for EU.


Code:
local OrgZO_LinkHandler_CreateChatLink = ZO_LinkHandler_CreateChatLink
ZO_LinkHandler_CreateChatLink = function(linkFunction,...) 
			if linkFunction == GetSmithingPatternResultLink then 
			  pat,mat,qtt,style,trait = ...
			  return GetSmithingPatternResultLink(pat,mat,qtt,style,trait,LINK_STYLE_BRACKETS)
			end
			return OrgZO_LinkHandler_CreateChatLink(linkFunction,...)
			end
seems to work for the station and and items in the bag. should be OK

Last edited by Wandamey : 03/14/16 at 03:17 PM.
  Reply With Quote