oh, that's nova team's data
NUI = Nova_Unitinfo
single target rotation works fine
just when i set it for aoe, lua error
oh, that's nova team's data
NUI = Nova_Unitinfo
single target rotation works fine
just when i set it for aoe, lua error
Last edited by momo1029; 11-07-2012 at 03:44 AM.
Hiya.
You can try Blinded profile. Not perfect like was before but still a decent one for leveling and 5Man
Rogue Profile
yup
the code works fine for awhile, then i added another code with shiftkeydown for rain of fire. ( it doesn't work , so i removed it )
then it starts to spit out that lua error ( closed wow, restarted comp )
Recently I started working on tweaking a Ret profile to see if I could get it to function properly with Mass Exorcism instead of normal Exorcism. Now I went and removed Exorcism and just left Mass Exorcism in the rotation, When it is setup like this Exorcism never goes off so I started thinking about how it handled spells based on glyphs and I add Exorcism back and these are the results.
With Mass Exorcism only in the rotation it never goes off.
With Mass Exorcism and Exorcism both in the profile next to each other it never continues past Exorcism but Mass Exorcism goes off sometimes.
With Mass Exorcism and Exorcism both in the profile with Exorcism at the very bottom Mass Exorcism goes off sometimes but not all the time.
The goal is obviously to have Mass Exorcism always go off as long as in Melee range but I can't seem to make this happen. Code for both of the Exorcism and Mass Exorcism are just return true nothing else. Anyone have any idea what might need to be done to have a spell that is only castable when the glyph is active work without having the original spell in the rotation still when it is not being used. But more importantly have it continually work and not skip it the majority of the time.
The game is not running so i cant say for sure but regardless
Never check if something is equal to nil is a thumb rule i haveImmolate == nil
Also i dont know how you structured your profile but normally a return true should be after RunMacro statement otherwise PQR will continue the execution of the profile.PHP Code:
local Immolate = UnitDebuffID("target",348,"PLAYER")
if select(5, NUI("player")) >= 1 and not Immolate then
RunMacro("aoe")
end
But then again cant understand why you get them errors
Looking for exploiters and botters to Elder Scrolls Online.
Can someone help me to make 1 frost mage profile?
I just have 1 profile we only need to change somethink on the profile.
We can do the best pvp frost profile in u help me.
Will this work alright?
PHP Code:
-- Hand of Freedom
if PQR_SpellAvailable(1044) then
local debuff = { 116281, 105289, 110317 }
for i=1,#debuff do
if UnitDebuffID("player", debuff[i]) then
CastSpellByName(GetSpellInfo(1044), "player")
end
else
if IsRightAltKeyDown() and not GetCurrentKeyBoardFocus() then
CastSpellByName(GetSpellInfo(1044), "player")
end
end
My Svn - https://subversion.assembla.com/svn/averykeys-svn/
@rubim your inbox is full add me on skype
For dungeon bosses will UnitLevel returns -1?
It doest not seem so.
The above code will only work with that function, that function checks the Target Name, since i have to put every boss on there...PHP Code:
if not BossCheck("target") then
CastSpellByName(GetSpellInfo(47541))
return true
end
if UnitPower("player") >= 70
and BossCheck("target") then
CastSpellByName(GetSpellInfo(47541))
return true
end
if BossCheck("target")
and Gcooldown >= 1 then
CastSpellByName(GetSpellInfo(47541))
return true
end
Is there another way to detect if target is a boss?Code:"Training Dummy", "Raider's Training Dummy", "Highlord's Nemesis Trainer", "Twisted Spirit", "Amani´shi Hatcher", "Hakkar's Chains", "Exposed Head of Magmaw", "Battleground Demolisher", "Ozumat", "Right Foot", "Left Foot", "Icy Tomb", "Risen Ghoul", "Mana Void", "Burning Tendons", "Wing Tentacle", "Arm Tentacle", "Twilight Assault Drake", "Goriona", "Ice Tomb", "Twilight Sapper", "Dreadlord Debilitator", "Blistering Tentacle", "Raigon", "Elegon", "Saboteur Kip'tilak", "Strike Ga'Dok", "Commander Ri'mok", "Raigonn", "Kuai the Brute", "Ming the Cunning", "Haiyan the Unstoppable", "Gekkan", "Xin the Weaponmaster", "Houndmaster Braun", "Armsmaster Harlan", "Flameweaver Koegler", "Thalnos the Soulrender", "Brother Korloff", "High Inquisitor Whitemane", "Instructor Chillheart", "Jandice Barov", "Rattlegore", "Lilian Voss", "Darkmaster Grandling", "Gu Cloudstrike", "Master Snowdrift", "Sha of Violence", "Taran Zhu", "Vizier Jin'bak", "Commander Vo'jak", "General Pa'valak", "Wing Leader Ner'onok", "Ook-Ook", "Hoptallus", "Yan-Zhu the Uncasked", "Wise Mari", "Lorewalker Stonestep", "Liu Flameheart", "Sha of Doubt", "Imperial Vizier Zor'lok", "Blade Lord Ta'yak", "Garalon", "GARALON LEG1?", "GARALON LEG1?", "GARALON LEG1?", "GARALON LEG1?", "Wind Lord Mel'jarak", "Amber-Shaper Un'sok", "Grand Empress Shek'zeer", "Amethyst Guardian", "Cobalt Guardian", "Jade Guardian", "Jasper Guardian", "Feng the Accursed"
Wouldn't you use and instead of then in the first one? Because you're looking for the spell and the local_debuff and if those return true, cast HoF on yourself. Then if you don't have those and you have a mouseover target and are holding the right alt key down, cast it on them?
PHP Code:
-- Hand of Freedom
if PQR_SpellAvailable(1044) then
local debuff = { 116281, 105289, 110317 }
for i=1,#debuff do
if UnitDebuffID("player", debuff[i]) then
CastSpellByName(GetSpellInfo(1044), "player")
end
end
else
if IsRightAltKeyDown() and not GetCurrentKeyBoardFocus() then
CastSpellByName(GetSpellInfo(1044), "player")
end
end
end
My Svn - https://subversion.assembla.com/svn/averykeys-svn/