was a wrong in typing try this
PHP Code:
if IsRightShiftKeyDown() then
if not UnitDebuffID("target", 102546) then
CastSpellByName(GetSpellInfo(5211), "target")
return true
end
end
Looking for exploiters and botters to Elder Scrolls Online.
Можно ли как-то проверить скорость каста спелла в данный момент (например выстрел кобры)?
Is there any way to check the speed of casting spells at the moment (such as Cobra Shot)?
How do you target people in your RBG group is itorCode:IsSpellInRange("blahh", "party9")or something totally different.Code:IsSpellInRange("blahhh", "raid9")
thank you 11
this is what i use for kinkehs profile for pestilence just add it into ---functions---
-- Pestilence on Left Shift.
if IsLeftShiftKeyDown() then
SpellCancelQueuedSpell()
CastSpellByName(GetSpellInfo(50842),nil)
if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end
return true
end
@Darksahde: If you wanna check for only Magic or Enrage buffs, you have to do something like this.
@Everyone: Fire Mage profile is done. I'm currently testing it out in LFR and stuff just to double-check it (on a different computer), so check back soon!Code:for i=1,40 do local Aura_,_,_,AuraType = UnitAura("target",i) if Aura and (AuraType == "Magic" or AuraType == "Enrage") then CastSpellByName(GetSpellInfo(19801),"target") return true end end![]()
Per request here is my updated "Boss Special" ability. Should work with Amber Shaper now. I still havent been able to test that portion, but I was able to find a similiar vehicle type mechanic to test out the casting and ability use functionality. My only question now is if I need to change the reshapeLife check to be player or vehicle.... For now I check both, so it will work either way.
Name: Boss Special
Spell ID: 0
Code: http://pastebin.com/raw.php?i=6VMdBkxY
Place at the top of the rotation.
Last edited by Xelper; 11-17-2012 at 01:57 PM.
@mentally:
Is there something wrong with the SVN?
Question, and hopefully someone can help... So I'm trying to add a code for collecting items, and in this instance its the Onyx Egg, the issue is though as if I do not have the item in my bag then it'll work fine but if I have already looted the item and its in the bags then WoW will crash.
This is what I'm using now
The reason why I have it in a table right now is I wanted to add a few more to the list but just testing with that now...Code:local item = { "Onyx Egg" } for i=1,#item do InteractUnit(item[i]) end
Also @mentally, where are your profiles at now? I normally use the repository but since thats being worked on where would I get like the mage one you made?
Last edited by Nerder; 11-17-2012 at 04:35 PM.
@darksahde: There's a limit of 40 Buff/Debuff types on a player, categorized from 1 through 40. I'm checking spesifically on UnitAura instead of UnitBuffID / UnitDebuffID because I know that the auraType will return either "Magic, Poison, Enrage, Curse" etc. and I werent sure if UnitBuff and UnitDebuff does the same. I'll check later when I'm done making dinner.
@Ralphiuss, @Nerder: The SVN at Google Code is being changed to Assembla to give everyone better overview of what's happening, a better ticket system and will overall pretty much accelerate development of profiles and such for us.Still working on importing everything again, restructuring and updating the Wiki, but give me a day or so and it'll all be back, better than what it used to be. ^^ Nova Project @ Assembla