Thread Tools Display Modes
Prev Previous Post   Next Post Next
09-12-14, 08:57 AM   #1
Sunnova
A Murloc Raider
AddOn Author - Click to view addons
Join Date: Aug 2006
Posts: 8
Farcaster

http://wow.curseforge.com/addons/farcaster/

I'm not the author for the Farcaster addon, and won't be taking it over, these are the changes I found that make it work on the wod beta and ptr. I've not tested any of this with other unit frame addons that it worked with before.

These changes are for the Farcaster_v100 release.

Farcaster.toc changes

*** changed line 1 to
## Interface: 60000



Farcaster.lua changes

*** changed line 164 from
if (name ~= nil) then
*** to
if name and name ~= "" then


*** changed line 286 from
if (spellName ~= nil) then
*** to
if spellName and spellName ~= "" then


*** changed line 289 from
if (isPassive == nil) and (sTexture ~= nil) then
*** to
if not isPassive and sTexture ~= nil then


*** changed line 395 from
tblSpellList["Tree"..iCurrentTalentTree][sCurrentTargetType] = { };
*** to
tblSpellList["Tree"..iCurrentTalentTree][sCurrentTargetType] = {};


*** changed line 398 from
if (chkSpell:GetChecked() == 1) then
*** to
if (chkSpell:GetChecked()) then


*** changed line 728 from
if (_G["chkTooltip"]:GetChecked() == 1) then
*** to
if (_G["chkTooltip"]:GetChecked()) then
 
 

WoWInterface » Site Forums » Archived Beta Forums » WoD Beta archived threads » Farcaster


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off