Results: 103Comments by: Provision
File: AutoInvite05/30/15
is it possible to make more invite...
Posted By: Provision
is it possible to make more invite strings ? for example: /ai inv;lfg to invite people that type inv OR lfg ? /ai lfg rvr inv (Separate with space) Open : AutoInvite.lua:51 Replace : if string.lower(message) == AutoInvite.cfg.watchStr and from ~= nil and from ~= "" then By : local bool = false for str in...
File: Ravalox' Quest Tracker05/26/15
is there a feature to grey out comp...
Posted By: Provision
is there a feature to grey out completed objectives? Replace in wykkydsQuestTracker/code/Methods.lua:195 conditionDescr = conditionDescr .. conditionText by : if isComplete then conditionDescr = conditionDescr .. "|c888888" .. conditionText .. "|r" else conditionDescr = conditionDescr .. conditionText end
File: Lui Extended05/10/15
With french version, I had issue wi...
Posted By: Provision
With french version, I had issue with buff name I got "NAME^f", and with achievement effect : "<>" I fix it with this edit : LuiExtended\SpellCastBuffs:1999 : buff.data.tooltipText = effect.name buff.data.tooltipText = zo_strformat(SI_TOOLTIP_ITEM_NAME, effect.name) LuiExtended\ChatAnnouc...