[BETA] PQRotation - an automated ability priority queue. menu

Shout-Out

User Tag List

Page 99 of 731 FirstFirst ... 499596979899100101102103149199599 ... LastLast
Results 1,471 to 1,485 of 10955
  1. #1471
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Zemnexx, I tested it out in some BGs. Seems to work pretty decently. I was able to reach top 5 damage done every time.
    Will test it out in arena shortly.

    I hope you continue to further develop this profile
    Last edited by xLegendx; 09-16-2011 at 02:18 PM.

    [BETA] PQRotation - an automated ability priority queue.
  2. #1472
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hmm some1 on the previous page made me interested..... im thinking about leveling a rogue from 1-85..... should i make a profile as im leveling for a leveling rogue?
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  3. #1473
    Untouchablekill's Avatar Member
    Reputation
    1
    Join Date
    Sep 2011
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So no one has answered my warlock problem. I shall state again for fellow warlocks that have the same problem. The rotations do not want to cast Curse of the Elements, is there any way to fix this?

  4. #1474
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ticklets View Post
    Would anyone know how to cast lifebloom on the person with most threat (the tank) until it stacks to 3, and keep stacking to 3 when the buff runs out?
    Something similar to this might work: (Note that I'm unsure about the Lifebloom HOT Spell ID)
    Code:
    local _,_,_,LB = UnitBuffID("target",33763)
    
    if LB ~= nil and UnitThreathSituation("target") == 3 or UnitGroupRolesAssigned("target") == "TANK" then
    	if LB == 3 then return false
    	else return true end
    else return true
    end
    Of course, that's only limited to your current target and it's fetching the current threat situation from your current target's target. You'll need to rely on a functionality like sheuron's "Autotarget LowHP" function for it to determine which party or raid member is currently the acting tank.

    If you don't however, you can incorporate it like this:
    Code:
    local mytarget = "player"
    local lowest = 100 * UnitHealth(mytarget) / UnitHealthMax(mytarget)
    local group = "party"
    local members = GetNumPartyMembers()
    lowhpmembers = 0
    
    if GetNumRaidMembers() > 0 then
    	group = "raid"
    	members = GetNumRaidMembers()
    end
    
    for i = 1, members, 1 do
    	local member = group..tostring(i)
    	local memberhp = 100 * UnitHealth(member) / UnitHealthMax(member)
    	if UnitGroupRolesAssigned(member) == "TANK" then memberhp = memberhp - 5 end
    	if UnitThreatSituation(member) == 3 then memberhp = memberhp - 5 end
    	if memberhp < 95 and UnitInRange(member) then lowhpmembers = lowhpmembers +1 end
    	if memberhp > 1  and memberhp < lowest and UnitInRange(member) then
    		mytarget = member
    		lowest = memberhp
    	end
    end
    
    if UnitAffectingCombat(mytarget) and UnitBuffID("player",87959) == nil and IsMounted() == nil then TargetUnit(mytarget) end
    
    -- Lifebloom Script. All above is sheuron's autotarget function.
    if UnitThreatSituation(mytarget) == 3 or UnitGroupRolesAssigned(mytarget) == "TANK" then
    	local _,_,_,LB = UnitBuffID("target",33763)
    		if LB ~= nil then
    			if LB == 3 then return false else return true end
    		else return true end
    end
    That's basically sheuron's autotarget function combined with the Lifebloom spell. You could try it out and see if it works for you.
    Last edited by Kinky; 09-16-2011 at 05:46 PM. Reason: Spelling error

  5. #1475
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Untouchablekill View Post
    So no one has answered my warlock problem. I shall state again for fellow warlocks that have the same problem. The rotations do not want to cast Curse of the Elements, is there any way to fix this?
    hmm maybe i just didn't notice, but it should only cast it on bosses.... i thought it did.... if not i'm jumpin on my warlock right now and gonna see if that is an issue or not

    *edit*
    it also does a check to see if debuffs of the same type are currently up on that target.... so if you CoE gets removed you don't waste time re-applying, or if it's already up you don't waste time applying it to begin with
    Last edited by bu_ba_911; 09-16-2011 at 05:54 PM.
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  6. #1476
    Untouchablekill's Avatar Member
    Reputation
    1
    Join Date
    Sep 2011
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    hmm maybe i just didn't notice, but it should only cast it on bosses.... i thought it did.... if not i'm jumpin on my warlock right now and gonna see if that is an issue or not

    *edit*
    it also does a check to see if debuffs of the same type are currently up on that target.... so if you CoE gets removed you don't waste time re-applying, or if it's already up you don't waste time applying it to begin with
    I'm the only one who can apply the effect at all and it won't cast >_<

    ---------- Post added at 06:32 PM ---------- Previous post was at 06:10 PM ----------

    Also does anyone know how to code a LUA for Mana Shield (Mage) so that it applys itself then reapplies at say 2 seconds or when it goes away from absorbing all its damage?

  7. #1477
    jackus's Avatar Active Member
    Reputation
    58
    Join Date
    Aug 2006
    Posts
    802
    Thanks G/R
    1/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I toke holy priest dispel.
    Code:
    local da = UnitDebuffID("party1", 49203)
    local db = UnitDebuffID("party1", 47476)
    local dc = UnitDebuffID("party1", 339)
    local de = UnitDebuffID("party1", 3355)
    local df = UnitDebuffID("party1", 34490)
    local dg = UnitDebuffID("party1", 19185)
    local dh = UnitDebuffID("party1", 50245)
    local di = UnitDebuffID("party1", 4167)
    local dj = UnitDebuffID("party1", 44572)
    local dk = UnitDebuffID("party1", 83047)
    local dl = UnitDebuffID("party1", 118)
    local dm = UnitDebuffID("party1", 82691)
    local dn = UnitDebuffID("party1", 18469)
    local dos = UnitDebuffID("party1", 33395)
    local dp = UnitDebuffID("party1", 122)
    local dq = UnitDebuffID("party1", 83302)
    local dr = UnitDebuffID("party1", 55080)
    local ds = UnitDebuffID("party1", 120)
    local dt = UnitDebuffID("party1", 31589)
    local du = UnitDebuffID("party1", 853)
    local dv = UnitDebuffID("party1", 20066)
    local dw = UnitDebuffID("party1", 31935)
    local dx = UnitDebuffID("party1", 605)
    local dy = UnitDebuffID("party1", 64044)
    local dz = UnitDebuffID("party1", 8122)
    local daa = UnitDebuffID("party1", 15487)
    local dbb = UnitDebuffID("party1", 64695)
    local dcc = UnitDebuffID("party1", 63685)
    local ddd = UnitDebuffID("party1", 5782)
    local dd = UnitDebuffID("party1", 5484)
    local dee = UnitDebuffID("party1", 6358)
    local dff = UnitDebuffID("party1", 30283)
    local dgg = UnitDebuffID("party1", 6789)
    local dhh = UnitDebuffID("party1", 31117)
    local dii = UnitDebuffID("party1", 18498)
    local aa = UnitDebuffID("party2", 49203)
    local ab = UnitDebuffID("party2", 47476)
    local ac = UnitDebuffID("party2", 339)
    local ae = UnitDebuffID("party2", 3355)
    local af = UnitDebuffID("party2", 34490)
    local ag = UnitDebuffID("party2", 19185)
    local ah = UnitDebuffID("party2", 50245)
    local ai = UnitDebuffID("party2", 4167)
    local aj = UnitDebuffID("party2", 44572)
    local ak = UnitDebuffID("party2", 83047)
    local al = UnitDebuffID("party2", 118)
    local am = UnitDebuffID("party2", 82691)
    local an = UnitDebuffID("party2", 18469)
    local ao = UnitDebuffID("party2", 33395)
    local ap = UnitDebuffID("party2", 122)
    local aq = UnitDebuffID("party2", 83302)
    local ar = UnitDebuffID("party2", 55080)
    local as = UnitDebuffID("party2", 120)
    local at = UnitDebuffID("party2", 31589)
    local au = UnitDebuffID("party2", 853)
    local av = UnitDebuffID("party2", 20066)
    local aw = UnitDebuffID("party2", 31935)
    local ax = UnitDebuffID("party2", 605)
    local ay = UnitDebuffID("party2", 64044)
    local az = UnitDebuffID("party2", 8122)
    local aaa = UnitDebuffID("party2", 15487)
    local abb = UnitDebuffID("party2", 64695)
    local acc = UnitDebuffID("party2", 63685)
    local add = UnitDebuffID("party2", 5782)
    local ad = UnitDebuffID("party2", 5484)
    local aee = UnitDebuffID("party2", 6358)
    local aff = UnitDebuffID("party2", 30283)
    local agg = UnitDebuffID("party2", 6789)
    local ahh = UnitDebuffID("party2", 31117)
    local aii = UnitDebuffID("party2", 18498)
    local ba = UnitDebuffID("party3", 49203)
    local bb = UnitDebuffID("party3", 47476)
    local bc = UnitDebuffID("party3", 339)
    local be = UnitDebuffID("party3", 3355)
    local bf = UnitDebuffID("party3", 34490)
    local bg = UnitDebuffID("party3", 19185)
    local bh = UnitDebuffID("party3", 50245)
    local bi = UnitDebuffID("party3", 4167)
    local bj = UnitDebuffID("party3", 44572)
    local bk = UnitDebuffID("party3", 83047)
    local bl = UnitDebuffID("party3", 118)
    local bm = UnitDebuffID("party3", 82691)
    local bn = UnitDebuffID("party3", 18469)
    local bo = UnitDebuffID("party3", 33395)
    local bp = UnitDebuffID("party3", 122)
    local bq = UnitDebuffID("party3", 83302)
    local br = UnitDebuffID("party3", 55080)
    local bs = UnitDebuffID("party3", 120)
    local bt = UnitDebuffID("party3", 31589)
    local bu = UnitDebuffID("party3", 853)
    local bv = UnitDebuffID("party3", 20066)
    local bw = UnitDebuffID("party3", 31935)
    local bx = UnitDebuffID("party3", 605)
    local by = UnitDebuffID("party3", 64044)
    local bz = UnitDebuffID("party3", 8122)
    local baa = UnitDebuffID("party3", 15487)
    local bbb = UnitDebuffID("party3", 64695)
    local bcc = UnitDebuffID("party3", 63685)
    local bdd = UnitDebuffID("party3", 5782)
    local bd = UnitDebuffID("party3", 5484)
    local bee = UnitDebuffID("party3", 6358)
    local bff = UnitDebuffID("party3", 30283)
    local bgg = UnitDebuffID("party3", 6789)
    local bhh = UnitDebuffID("party3", 31117)
    local bii = UnitDebuffID("party3", 18498)
    local ca = UnitDebuffID("party4", 49203)
    local cb = UnitDebuffID("party4", 47476)
    local cc = UnitDebuffID("party4", 339)
    local ce = UnitDebuffID("party4", 3355)
    local cf = UnitDebuffID("party4", 34490)
    local cg = UnitDebuffID("party4", 19185)
    local ch = UnitDebuffID("party4", 50245)
    local ci = UnitDebuffID("party4", 4167)
    local cj = UnitDebuffID("party4", 44572)
    local ck = UnitDebuffID("party4", 83047)
    local cl = UnitDebuffID("party4", 118)
    local cm = UnitDebuffID("party4", 82691)
    local cn = UnitDebuffID("party4", 18469)
    local co = UnitDebuffID("party4", 33395)
    local cp = UnitDebuffID("party4", 122)
    local cq = UnitDebuffID("party4", 83302)
    local cr = UnitDebuffID("party4", 55080)
    local cs = UnitDebuffID("party4", 120)
    local ct = UnitDebuffID("party4", 31589)
    local cu = UnitDebuffID("party4", 853)
    local cv = UnitDebuffID("party4", 20066)
    local cw = UnitDebuffID("party4", 31935)
    local cx = UnitDebuffID("party4", 605)
    local cy = UnitDebuffID("party4", 64044)
    local cz = UnitDebuffID("party4", 8122)
    local caa = UnitDebuffID("party4", 15487)
    local cbb = UnitDebuffID("party4", 64695)
    local ccc = UnitDebuffID("party4", 63685)
    local cdd = UnitDebuffID("party4", 5782)
    local cd = UnitDebuffID("party4", 5484)
    local cee = UnitDebuffID("party4", 6358)
    local cff = UnitDebuffID("party4", 30283)
    local cgg = UnitDebuffID("party4", 6789)
    local chh = UnitDebuffID("party4", 31117)
    local cii = UnitDebuffID("party4", 18498)
    local ea = UnitDebuffID("party5", 49203)
    local eb = UnitDebuffID("party5", 47476)
    local ec = UnitDebuffID("party5", 339)
    local ee = UnitDebuffID("party5", 3355)
    local ef = UnitDebuffID("party5", 34490)
    local eg = UnitDebuffID("party5", 19185)
    local eh = UnitDebuffID("party5", 50245)
    local ei = UnitDebuffID("party5", 4167)
    local ej = UnitDebuffID("party5", 44572)
    local ek = UnitDebuffID("party5", 83047)
    local el = UnitDebuffID("party5", 118)
    local em = UnitDebuffID("party5", 82691)
    local en = UnitDebuffID("party5", 18469)
    local eo = UnitDebuffID("party5", 33395)
    local ep = UnitDebuffID("party5", 122)
    local eq = UnitDebuffID("party5", 83302)
    local er = UnitDebuffID("party5", 55080)
    local es = UnitDebuffID("party5", 120)
    local et = UnitDebuffID("party5", 31589)
    local eu = UnitDebuffID("party5", 853)
    local ev = UnitDebuffID("party5", 20066)
    local ew = UnitDebuffID("party5", 31935)
    local ex = UnitDebuffID("party5", 605)
    local ey = UnitDebuffID("party5", 64044)
    local ez = UnitDebuffID("party5", 8122)
    local eaa = UnitDebuffID("party5", 15487)
    local ebb = UnitDebuffID("party5", 64695)
    local ecc = UnitDebuffID("party5", 63685)
    local edd = UnitDebuffID("party5", 5782)
    local ed = UnitDebuffID("party5", 5484)
    local eee = UnitDebuffID("party5", 6358)
    local eff = UnitDebuffID("party5", 30283)
    local egg = UnitDebuffID("party5", 6789)
    local ehh = UnitDebuffID("party5", 31117)
    local eii = UnitDebuffID("party5", 18498)
    local fa = UnitDebuffID(targettoheal, 49203)
    local fb = UnitDebuffID(targettoheal, 47476)
    local fc = UnitDebuffID(targettoheal, 339)
    local fe = UnitDebuffID(targettoheal, 3355)
    local ff = UnitDebuffID(targettoheal, 34490)
    local fg = UnitDebuffID(targettoheal, 19185)
    local fh = UnitDebuffID(targettoheal, 50245)
    local fi = UnitDebuffID(targettoheal, 4167)
    local fj = UnitDebuffID(targettoheal, 44572)
    local fk = UnitDebuffID(targettoheal, 83047)
    local fl = UnitDebuffID(targettoheal, 118)
    local fm = UnitDebuffID(targettoheal, 82691)
    local fn = UnitDebuffID(targettoheal, 18469)
    local fo = UnitDebuffID(targettoheal, 33395)
    local fp = UnitDebuffID(targettoheal, 122)
    local fq = UnitDebuffID(targettoheal, 83302)
    local fr = UnitDebuffID(targettoheal, 55080)
    local fs = UnitDebuffID(targettoheal, 120)
    local ft = UnitDebuffID(targettoheal, 31589)
    local fu = UnitDebuffID(targettoheal, 853)
    local fv = UnitDebuffID(targettoheal, 20066)
    local fw = UnitDebuffID(targettoheal, 31935)
    local fx = UnitDebuffID(targettoheal, 605)
    local fy = UnitDebuffID(targettoheal, 64044)
    local fz = UnitDebuffID(targettoheal, 8122)
    local faa = UnitDebuffID(targettoheal, 15487)
    local fbb = UnitDebuffID(targettoheal, 64695)
    local fcc = UnitDebuffID(targettoheal, 63685)
    local fdd = UnitDebuffID(targettoheal, 5782)
    local fd = UnitDebuffID(targettoheal, 5484)
    local fee = UnitDebuffID(targettoheal, 6358)
    local fff = UnitDebuffID(targettoheal, 30283)
    local fgg = UnitDebuffID(targettoheal, 6789)
    local fhh = UnitDebuffID(targettoheal, 31117)
    local fii = UnitDebuffID(targettoheal, 18498)
    local uaa = UnitDebuffID(targettoheal, 30108)
    local uab = UnitDebuffID("party1", 30108)
    local uac = UnitDebuffID("party2", 30108)
    local uad = UnitDebuffID("party3", 30108)
    local uae = UnitDebuffID("party4", 30108)
    local uaf = UnitDebuffID("party5", 30108)
    local vta = UnitDebuffID(targettoheal, 34914)
    local vtb = UnitDebuffID("party1", 34914)
    local vtc = UnitDebuffID("party2", 34914)
    local vtd = UnitDebuffID("party3", 34914)
    local vte = UnitDebuffID("party4", 34914)
    local vtf = UnitDebuffID("party5", 34914)
     
    if da ~= nil or db ~= nil or dc ~= nil or dd ~= nil or de ~= nil or df ~= nil or dg ~= nil or dh ~= nil or di ~= nil or dj ~= nil or dk ~= nil or dl ~= nil or dm ~= nil or dn ~= nil or dos ~= nil or dp ~= nil or dq ~= nil or dr ~= nil or ds ~= nil or dt ~= nil or du ~= nil or dv ~= nil or dw ~= nil or dx ~= nil or dy ~= nil or dz ~= nil or daa ~= nil or dbb ~= nil or dcc ~= nil or ddd ~= nil or dee ~= nil or dff ~= nil or dgg ~= nil or dhh ~= nil or dii ~= nil and UnitInRange("party1") 
    then CastSpellByID(4987,"party1") 
    end
    
    if aa ~= nil or ab ~= nil or ac ~= nil or ad ~= nil or ae ~= nil or af ~= nil or ag ~= nil or ah ~= nil or ai ~= nil or aj ~= nil or ak ~= nil or al ~= nil or am ~= nil or an ~= nil or ao ~= nil or ap ~= nil or aq ~= nil or ar ~= nil or as ~= nil or at ~= nil or au ~= nil or av ~= nil or aw ~= nil or ax ~= nil or ay ~= nil or az ~= nil or aaa ~= nil or abb ~= nil or acc ~= nil or add ~= nil or aee ~= nil or aff ~= nil or agg ~= nil or ahh ~= nil or aii ~= nil and UnitInRange("party2")
    then CastSpellByID(4987,"party2") 
    end
    
    if ba ~= nil or bb ~= nil or bc ~= nil or bd ~= nil or be ~= nil or bf ~= nil or bg ~= nil or bh ~= nil or bi ~= nil or bj ~= nil or bk ~= nil or bl ~= nil or bm ~= nil or bn ~= nil or bo ~= nil or bp ~= nil or bq ~= nil or br ~= nil or bs ~= nil or bt ~= nil or bu ~= nil or bv ~= nil or bw ~= nil or bx ~= nil or by ~= nil or bz ~= nil or baa ~= nil or bbb ~= nil or bcc ~= nil or bdd ~= nil or bee ~= nil or bff ~= nil or bgg ~= nil or bhh ~= nil or bii ~= nil and UnitInRange("party3")
    then CastSpellByID(4987,"party3") 
    end
    
    if ca ~= nil or cb ~= nil or cc ~= nil or cd ~= nil or ce ~= nil or cf ~= nil or cg ~= nil or ch ~= nil or ci ~= nil or cj ~= nil or ck ~= nil or cl ~= nil or cm ~= nil or cn ~= nil or co ~= nil or cp ~= nil or cq ~= nil or cr ~= nil or cs ~= nil or ct ~= nil or cu ~= nil or cv ~= nil or cw ~= nil or cx ~= nil or cy ~= nil or cz ~= nil or caa ~= nil or cbb ~= nil or ccc ~= nil or cdd ~= nil or cee ~= nil or cff ~= nil or cgg ~= nil or chh ~= nil or cii ~= nil and UnitInRange("party4")
    then CastSpellByID(4987,"party4")
    end
    
    if ea ~= nil or eb ~= nil or ec ~= nil or ed ~= nil or ee ~= nil or ef ~= nil or eg ~= nil or eh ~= nil or ei ~= nil or ej ~= nil or ek ~= nil or el ~= nil or em ~= nil or en ~= nil or eo ~= nil or ep ~= nil or eq ~= nil or er ~= nil or es ~= nil or et ~= nil or eu ~= nil or ev ~= nil or ew ~= nil or ex ~= nil or ey ~= nil or ez ~= nil or eee ~= nil or ebb ~= nil or ecc ~= nil or edd ~= nil or eaa ~= nil or eff ~= nil or egg ~= nil or ehh ~= nil or eii ~= nil and UnitInRange("party5")
    then CastSpellByID(4987,"party5") 
    end
    and added 4987 coz its pala dispel, but it wont do anything

  8. #1478
    Untouchablekill's Avatar Member
    Reputation
    1
    Join Date
    Sep 2011
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So can anyone solve my mana shield problem?

  9. #1479
    Aunubus69's Avatar Private
    Reputation
    1
    Join Date
    Sep 2011
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Ban possiblity

    What is the chances of someone getting banned for using this. Because i do think it is considered a 3rd party program to do things automatically witch blizz see's as botting. Has anyone have reports of ban or anything else. It just might not be in the warden list of directory of bannable offenses.

  10. #1480
    Untouchablekill's Avatar Member
    Reputation
    1
    Join Date
    Sep 2011
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Aunubus69 View Post
    What is the chances of someone getting banned for using this. Because i do think it is considered a 3rd party program to do things automatically witch blizz see's as botting. Has anyone have reports of ban or anything else. It just might not be in the warden list of directory of bannable offenses.
    It is not bannable as it just spams button pressing.

  11. #1481
    jackus's Avatar Active Member
    Reputation
    58
    Join Date
    Aug 2006
    Posts
    802
    Thanks G/R
    1/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Untouchablekill View Post
    It is not bannable as it just spams button pressing.
    Wrong! It is bannable. But so far i think zero haz been banned.

  12. #1482
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Untouchablekill View Post
    So can anyone solve my mana shield problem?
    2 things.. one impatient...
    2

    Name: Mana Shield
    Spell ID: 1463
    Delay: 500
    LUA Code:
    Code:
    local MS, _, _, _, _, _, MSExpire = UnitBuffID("player", 1463, "player")
    
    if MS ~= nil then
    	MSExpire =(MSExpire - GetTime())
    	if MSExpire < 2 then
    		return true
    	end
    else
    	return true
    end
    haven't tested but im sure you will

    still working on where the error for CoE is... grammatically it's correct otherwise the rotation wouldn't run so there has to be an error somewhere.
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  13. #1483
    Zemnexx's Avatar Active Member CoreCoins Purchaser
    Reputation
    31
    Join Date
    Aug 2011
    Posts
    141
    Thanks G/R
    1/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Aunubus69 View Post
    What is the chances of someone getting banned for using this. Because i do think it is considered a 3rd party program to do things automatically witch blizz see's as botting. Has anyone have reports of ban or anything else. It just might not be in the warden list of directory of bannable offenses.
    I think the chances are very low on using this, actually, you probably have the most chance of getting banned by using the interrupt bot. I actually read an article somewhere that Blizzard is aware of the problem since use of an interrupt bot is on the rise, it stated that they are investigating how it is circumventing warden and plan on taking action against those caught using it. I forget exactly where I read it but I can go find it if you want. Just my two cents.

    So bottom line is yes, there is always a risk, it just seems extremely low at the moment.

  14. #1484
    KuRIoS's Avatar Admin
    Authenticator enabled
    Reputation
    2984
    Join Date
    Apr 2006
    Posts
    9,811
    Thanks G/R
    353/298
    Trade Feedback
    9 (100%)
    Mentioned
    5 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by Zemnexx View Post
    I think the chances are very low on using this, actually, you probably have the most chance of getting banned by using the interrupt bot. I actually read an article somewhere that Blizzard is aware of the problem since use of an interrupt bot is on the rise, it stated that they are investigating how it is circumventing warden and plan on taking action against those caught using it. I forget exactly where I read it but I can go find it if you want. Just my two cents.

    So bottom line is yes, there is always a risk, it just seems extremely low at the moment.
    standard reply from blizz without anything being done

  15. #1485
    Zemnexx's Avatar Active Member CoreCoins Purchaser
    Reputation
    31
    Join Date
    Aug 2011
    Posts
    141
    Thanks G/R
    1/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by KuRIoS View Post
    standard reply from blizz without anything being done
    Oh, goody.

Similar Threads

  1. [Buying] Planetside 2 Priority Beta Key
    By isit123 in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-21-2012, 06:34 AM
  2. [Selling] PLANETSIDE 2 Priority/Early Access Beta Account
    By Kabraxiss in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-18-2012, 10:20 AM
  3. [Selling] Planetside 2 Priority/Early access Beta Keys
    By mrsluf in forum General MMO Buy Sell Trade
    Replies: 3
    Last Post: 07-17-2012, 04:45 AM
  4. [Selling] Planetside 2 Priority Access beta key codes
    By fatalefout in forum General MMO Buy Sell Trade
    Replies: 1
    Last Post: 06-26-2012, 04:08 PM
  5. [Bot] Automated dungeon queue / Justice Point leecher(Auto-it source)
    By s_e_a_n_66 in forum World of Warcraft Bots and Programs
    Replies: 36
    Last Post: 01-17-2011, 11:50 AM
All times are GMT -5. The time now is 12:26 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search