Results: 6Comments by: Oberweiss
File: CharacterInfo12-18-06
Originally posted by wmrojer @Obe...
Posted By: Oberweiss
Originally posted by wmrojer @Oberweiss: I can't seem to reproduce the error. Does it happen everytime you talk to the banker? The first time I talk to the banker after logging in, it happens. If I reset my improved error frame mod, I do notice that it happens every time I talk to the banker (it had been supressing multiple insta...
File: CharacterInfo12-17-06
Originally posted by wmrojer @Obe...
Posted By: Oberweiss
Originally posted by wmrojer @Oberweiss: What WoW version are you running? The below poster is right; the error is happening on beta. Sorry, I should have mentioned that. :o
File: CharacterInfo12-16-06
I'm getting a mildly annoying error...
Posted By: Oberweiss
I'm getting a mildly annoying error even after updating all my ace addons/libraries with the AceUpdater. Is this related to the bad version of Ace2 you mentioned? The following occurs when I first talk to a banker: Error: attempt to concatenate local 'itemString' (a nil value) AddOn: Ace2 File: CharacterInfoStorage.lua Line: 3...
File: Clique11-07-06
Re: Re: Re: Click Casting on Target with Scripting
Posted By: Oberweiss
Originally posted by Cladhaire Clique does not change your target. You can use Clique:NewSpell() if you need to conditionally cast a spell. You're not being very clear with yoru question, since Clique does not change target normally. I figured out how to get what I want working, with Clique:IsBuffActive("buff","unit") and Clique:...
File: Clique11-06-06
Re: Click Casting on Target with Scripting
Posted By: Oberweiss
Originally posted by Cladhaire Why not just bind Abolish Poison.. Clique:CastSpell("Abolish Poison") The reason I don't do that is to add in my own "prevent rebuff" functionality, which (the way I do it) requires my target to temporarily change. It's not so important for Abolish Poison, but it's very important for Innervate and R...
File: Clique11-05-06
Click Casting on Target with Scripting
Posted By: Oberweiss
I'm stumped at trying to create a script that will keep my target and click cast on both the raid frame and the target frame. if ("%t" == UnitName(Clique.unit)) then i = 0 else i = 1 end TargetUnit(Clique.unit) if not (DoT_SpellOnTarget('Abolish Poison')) then CastSpellByName('Abolish Poison') end if (i == 1) then TargetLastT...