Thread Tools Display Modes
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
 
09-12-14, 12:10 PM   #2
Seerah
Fishing Trainer
 
Seerah's Avatar
WoWInterface Super Mod
Featured
Join Date: Oct 2006
Posts: 10,860
Originally Posted by Sargonan View Post
*** changed line 395 from
tblSpellList["Tree"..iCurrentTalentTree][sCurrentTargetType] = { };
*** to
tblSpellList["Tree"..iCurrentTalentTree][sCurrentTargetType] = {};
Unless I missed something, all you did here is remove the space. That does nothing.
__________________
"You'd be surprised how many people violate this simple principle every day of their lives and try to fit square pegs into round holes, ignoring the clear reality that Things Are As They Are." -Benjamin Hoff, The Tao of Pooh

 
 

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

Thread Tools
Display Modes

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