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

Shout-Out

User Tag List

Page 330 of 731 FirstFirst ... 230280326327328329330331332333334380430 ... LastLast
Results 4,936 to 4,950 of 10955
  1. #4936
    Serpious's Avatar Contributor CoreCoins Purchaser
    Reputation
    134
    Join Date
    Jul 2011
    Posts
    364
    Thanks G/R
    0/1
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Valma View Post
    Some rework for your Beacon code.

    CastAndForget Beacon code:
    Code:
    <Ability><Name>Beacon (Right Alt)</Name><Default>false</Default><SpellID>53563</SpellID><Actions></Actions>
    <Lua>
    local hasMouseover = UnitExists(&quot;mouseover&quot;)
    local mouseoverFriend = UnitIsFriend(&quot;player&quot;, &quot;mouseover&quot;)
    local group = &quot;party&quot;
    local members = GetNumPartyMembers()
    
    if GetNumRaidMembers() &gt; 0 then group = &quot;raid&quot; members = GetNumRaidMembers() end
    
    if IsRightAltKeyDown() and GetCurrentKeyBoardFocus() == nil then
    	if hasMouseover and mouseoverFriend then
    		local name = UnitName("mouseover")
    		for i = 1, members, 1 do
    			local member = group..tostring(i)
        			if name == UnitName(member)  then
        				PQ_BeaconTarget = member
        				PQ_BeaconTargetName = name
        				PQR_CustomTarget = PQ_BeaconTarget
        				return true
        			end
    		end 
    	 end
    end
    
    if PQ_BeaconTarget then
    	local Beacon = UnitBuffID(PQ_BeaconTarget, 53563)
    	local BeaconExpire = select(7,UnitBuffID(PQ_BeaconTarget, 53563)) - GetTime()
    
    	if UnitName(PQ_BeaconTarget) == PQ_BeaconTargetName then	
    		if Beacon then
    			if BeaconExpire &lt; 10 then
    				PQR_CustomTarget = PQ_BeaconTarget
    				return true
    			end
    		else 
    			PQR_CustomTarget = PQ_BeaconTarget
    			return true		
    		end
    	else
    		for i = 1, members, 1 do
    			local member = group..tostring(i)
        			if PQ_BeaconTargetName == UnitName(member)  then
        				PQ_BeaconTarget = member
        				PQR_CustomTarget = PQ_BeaconTarget
        				return true
        			end
          		end		
    	end
    end	
    </Lua>
    <RecastDelay>500</RecastDelay><Target>Custom</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability>
    Untested,coz I'm coding from work and u know,I can't play WoW from work QQ
    Keep um comming

    [BETA] PQRotation - an automated ability priority queue.
  2. #4937
    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)
    Hey guys!

    I want to apologize for not being here so often the last two weeks. I can promise you though that I have been working hard on the profile to make it just that little bit better.
    I would've released my profile before the weekend, but, I went into labor on Friday and at 11:20pm CEST I gave birth to a perfect baby boy! He was 49cm and weighted 3030g. I'll try and post some pictures that I have on my phone later.

    With Sheepmoon's permission, I'll go through his profile and mix-match a bit, if he's interested we could even work together on it. And if you want buba and have space on your SVN I could host my profile with you.

    Anyhow, I'll try and have it released by Wednesday's nerf patch here in Europe.

  3. #4938
    darkayo's Avatar Member
    Reputation
    3
    Join Date
    Jan 2008
    Posts
    191
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello, any Warlock update ?

  4. #4939
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by darkayo View Post
    Hello, any Warlock update ?
    Crystal_tech is still working on decent one.

    Plus I'm coding more advanced one.Event-handlers and fully automated with build in patterns for every DS fight(So u just start rotation, select boss fight with your numpad and do nothing exept WASD and mouse turning).

    Don't expect it to be there soon,but still it will be posted ASAP.

  5. #4940
    Fireflyer's Avatar Member
    Reputation
    2
    Join Date
    Apr 2009
    Posts
    11
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    Hey guys!

    I want to apologize for not being here so often the last two weeks. I can promise you though that I have been working hard on the profile to make it just that little bit better.
    I would've released my profile before the weekend, but, I went into labor on Friday and at 11:20pm CEST I gave birth to a perfect baby boy! He was 49cm and weighted 3030g. I'll try and post some pictures that I have on my phone later.

    With Sheepmoon's permission, I'll go through his profile and mix-match a bit, if he's interested we could even work together on it. And if you want buba and have space on your SVN I could host my profile with you.

    Anyhow, I'll try and have it released by Wednesday's nerf patch here in Europe.
    Congrats on your "work" on both counts ... ^^
    Last edited by Fireflyer; 01-31-2012 at 02:03 PM.

  6. #4941
    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 Valma View Post
    Some rework for your Beacon code.

    It casts beacon on your mouseover for first time,then it saves target name and party/raid index and autorecasts beacon on saved target.It even checks if in some case target was swapped with someone in raid or not in raid(by name) and if it was some kind of swap it finds target and resaves index.

    CastAndForget Beacon code:


    Untested,coz I'm coding from work and u know,I can't play WoW from work QQ
    that code looks really close to where i wanted to go with it, however since i do still enjoy healing manually on my pally, i occasionally turn off my rotation haha... and it's become a habit of mine to using VuhDo to cast Beacon and Everything. I think with a simple tweak I can take your code to the place I never had the time to take mine. Very nice and clean looking btw <3 and rep +5
    ^0^Team Nova's PQR NCC ^0^

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

  7. #4942
    irri's Avatar Corporal
    Reputation
    1
    Join Date
    Oct 2011
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by [Blinded] View Post
    Auto Attack and Skill Rotation.
    Tested it for a boss dummie and Ultraxion ( Patchworkfights ) , i configurated Simcraft for both fights and on both fights my profile done simcraft dps - 1k DPS.

    If u have T13 4p-bonus u will lose some DPS with this profile cuz i have no 4p and so i don't care for casting LB at 4 stacks of MW if my SW are up.



    Exactly this is the rotation of my profile.
    Very nice profile, m8.
    P.S. Reccomend for all Enhance.

  8. #4943
    Gabbz's Avatar Contributor
    Reputation
    184
    Join Date
    Dec 2011
    Posts
    451
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    Hey guys!

    I want to apologize for not being here so often the last two weeks. I can promise you though that I have been working hard on the profile to make it just that little bit better.
    I would've released my profile before the weekend, but, I went into labor on Friday and at 11:20pm CEST I gave birth to a perfect baby boy! He was 49cm and weighted 3030g. I'll try and post some pictures that I have on my phone later.

    With Sheepmoon's permission, I'll go through his profile and mix-match a bit, if he's interested we could even work together on it. And if you want buba and have space on your SVN I could host my profile with you.

    Anyhow, I'll try and have it released by Wednesday's nerf patch here in Europe.
    Gratz to the baby!!

  9. #4944
    smrdlja's Avatar Member
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    109
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    Hey guys!

    I want to apologize for not being here so often the last two weeks. I can promise you though that I have been working hard on the profile to make it just that little bit better.
    I would've released my profile before the weekend, but, I went into labor on Friday and at 11:20pm CEST I gave birth to a perfect baby boy! He was 49cm and weighted 3030g. I'll try and post some pictures that I have on my phone later.

    With Sheepmoon's permission, I'll go through his profile and mix-match a bit, if he's interested we could even work together on it. And if you want buba and have space on your SVN I could host my profile with you.

    Anyhow, I'll try and have it released by Wednesday's nerf patch here in Europe.
    Hey! no need to apologize for such great thing! Wish all the best to you and baby!

  10. #4945
    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 mentally View Post
    Hey guys!

    I want to apologize for not being here so often the last two weeks. I can promise you though that I have been working hard on the profile to make it just that little bit better.
    I would've released my profile before the weekend, but, I went into labor on Friday and at 11:20pm CEST I gave birth to a perfect baby boy! He was 49cm and weighted 3030g. I'll try and post some pictures that I have on my phone later.

    With Sheepmoon's permission, I'll go through his profile and mix-match a bit, if he's interested we could even work together on it. And if you want buba and have space on your SVN I could host my profile with you.

    Anyhow, I'll try and have it released by Wednesday's nerf patch here in Europe.
    pm sent, and can't wait for an update i haven't had the energy to code any more of my SPriest code haha he's just been sitting around waiting for something interesting to arise.... i have a sinking suspicion his time may come soon XD

    -----------

    @valma Getting a lot of Usage errors on both UnitBuff and UnitName..... going to try and sort them out, i love how the code is constructed so I want to use it haha

    *edit*
    think I fixed it..... here's what I morphed it into so far....

    Code:
    if not FirstRun then
    	local PQ_BeaconTarget = "player"
    	local BeaconTargetName = UnitName("player")
    	
    	FirstRun = 1
    end
    
    local hasMouseover = UnitExists("mouseover")
    local mouseoverFriend = UnitIsFriend("player", "mouseover")
    local group = "party"
    local members = GetNumPartyMembers()
    
    if GetNumRaidMembers() > 0 then group = "raid" members = GetNumRaidMembers() end
    
    if IsRightAltKeyDown() and GetCurrentKeyBoardFocus() == nil then
    	if hasMouseover and mouseoverFriend then
    		local nameMouseover = GetUnitName("mouseover")
    		for i = 1, members, 1 do
    			local member = group..tostring(i)
        			if nameMouseover == UnitName(member)  then
        				PQ_BeaconTarget = member
        				PQ_BeaconTargetName = nameMouseover
        				PQR_CustomTarget = PQ_BeaconTarget
        				return true
        			end
    		end 
    		if group == "party" and nameMouseover == GetUnitName("player") then
    			PQ_BeaconTarget = "player"
    			PQ_BeaconTargetName = nameMouseover
    			PQR_CustomTarget = "player"
    			return true
    		end
    	 end
    end
    
    local Beacon = UnitBuffID(PQ_BeaconTarget, 53563)
    
    if UnitName(PQ_BeaconTarget) == PQ_BeaconTargetName then	
    	if Beacon then
    		local BeaconExpire = select(7,UnitBuffID(PQ_BeaconTarget, 53563)) - GetTime()
    		if BeaconExpire < 10 then
    			PQR_CustomTarget = PQ_BeaconTarget
    			return true
    		end
    	else 
    		PQR_CustomTarget = PQ_BeaconTarget
    		return true		
    	end
    else
    	for i = 1, members, 1 do
    		local member = group..tostring(i)
    		if PQ_BeaconTargetName == UnitName(member)  then
    			PQ_BeaconTarget = member
    			PQR_CustomTarget = PQ_BeaconTarget
    			return true
    		end
    	end		
    end
    yes pretty much the same so far, but this is the first way i got it to work, will clean it up some more now <3

    and one of the key things I want to point out since I don't remember seeing this anywhere else.... when you are running a check on your party size and you're in a party here's how the check goes

    for a party size of 5 it will check

    party1
    party2
    party2
    party4

    nowhere in that check does it actually check the player, so whenever we do party size checks we also need to manually add in the player as well at the very end...... that was the whole cause of the "My Pally will heal everyone else fine, just not myself!" problem haha
    Last edited by bu_ba_911; 01-30-2012 at 07:15 AM.
    ^0^Team Nova's PQR NCC ^0^

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

  11. #4946
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Buba

    Can u try this out?

    Code:
    <Ability><Name>Beacon (Right Alt)</Name><Default>false</Default><SpellID>53563</SpellID><Actions></Actions>
    <Lua>
    local hasMouseover = UnitExists(&amp;quot;mouseover&amp;quot;)
    local mouseoverFriend = UnitIsFriend(&amp;quot;player&amp;quot;, &amp;quot;mouseover&amp;quot;)
    local group = &amp;quot;party&amp;quot;
    local members = GetNumPartyMembers()
    
    if GetNumRaidMembers() &amp;gt; 0 then group = &amp;quot;raid&amp;quot; members = GetNumRaidMembers() end
    
    if IsRightAltKeyDown() and GetCurrentKeyBoardFocus() == nil then
    	if hasMouseover and mouseoverFriend then
    		local name = UnitName("mouseover")
    		print(&amp;quot;\124cFFDBFA2AMouseOver player name is &amp;quot; .. name)
    		for i = 1, members, 1 do
    			local member = group..tostring(i)
    			print(&amp;quot;\124cFFDBFA2APartymember name is &amp;quot; .. UnitName(member))
        		if name == UnitName(member)  then
        			PQ_BeaconTarget = member
        			print(&amp;quot;\124cFFDBFA2ABeacon target index is &amp;quot; .. PQ_BeaconTarget)
        			PQ_BeaconTargetName = name
        			print(&amp;quot;\124cFFDBFA2ABeacon target name is &amp;quot; .. PQ_BeaconTargetName)
        			PQR_CustomTarget = PQ_BeaconTarget
        			return true
        		end
          	end 
        end
    end
    
    if PQ_BeaconTarget then
    	local Beacon = UnitBuffID(PQ_BeaconTarget, 53563)
    	local BeaconExpire = select(7,UnitBuffID(PQ_BeaconTarget, 53563)) - GetTime()
    
    	if UnitName(PQ_BeaconTarget) == PQ_BeaconTargetName then	
    		if Beacon then
    			if BeaconExpire &amp;lt; 10 then
    				PQR_CustomTarget = PQ_BeaconTarget
    				return true
    			end
    		else 
    			PQR_CustomTarget = PQ_BeaconTarget
    			return true		
    		end
    	else
    		for i = 1, members, 1 do
    			local member = group..tostring(i)
        		if PQ_BeaconTargetName == UnitName(member)  then
        			PQ_BeaconTarget = member
        			PQR_CustomTarget = PQ_BeaconTarget
        			return true
        		end
          	end		
    	end
    end	
    </Lua>
    <RecastDelay>500</RecastDelay><Target>Custom</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability>
    Want to see what it will write to chat,so I can debug it without WoW.Want to see in what place it goes not like intended

    EDIT: OK,I'M AN IDIOT Say me,are u trying to cast it on yourself or u are in party and casting on other player?
    Last edited by Valma; 01-30-2012 at 07:16 AM.

  12. #4947
    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 Valma View Post
    @Buba

    Can u try this out?

    Code:
    <Ability><Name>Beacon (Right Alt)</Name><Default>false</Default><SpellID>53563</SpellID><Actions></Actions>
    <Lua>
    local hasMouseover = UnitExists(&quot;mouseover&quot;)
    local mouseoverFriend = UnitIsFriend(&quot;player&quot;, &quot;mouseover&quot;)
    local group = &quot;party&quot;
    local members = GetNumPartyMembers()
    
    if GetNumRaidMembers() &gt; 0 then group = &quot;raid&quot; members = GetNumRaidMembers() end
    
    if IsRightAltKeyDown() and GetCurrentKeyBoardFocus() == nil then
    	if hasMouseover and mouseoverFriend then
    		local name = UnitName("mouseover")
    		print(&quot;\124cFFDBFA2AMouseOver player name is &quot; .. name)
    		for i = 1, members, 1 do
    			local member = group..tostring(i)
    			print(&quot;\124cFFDBFA2APartymember name is &quot; .. UnitName(member))
        		if name == UnitName(member)  then
        			PQ_BeaconTarget = member
        			print(&quot;\124cFFDBFA2ABeacon target index is &quot; .. PQ_BeaconTarget)
        			PQ_BeaconTargetName = name
        			print(&quot;\124cFFDBFA2ABeacon target name is &quot; .. PQ_BeaconTargetName)
        			PQR_CustomTarget = PQ_BeaconTarget
        			return true
        		end
          	end 
        end
    end
    
    if PQ_BeaconTarget then
    	local Beacon = UnitBuffID(PQ_BeaconTarget, 53563)
    	local BeaconExpire = select(7,UnitBuffID(PQ_BeaconTarget, 53563)) - GetTime()
    
    	if UnitName(PQ_BeaconTarget) == PQ_BeaconTargetName then	
    		if Beacon then
    			if BeaconExpire &lt; 10 then
    				PQR_CustomTarget = PQ_BeaconTarget
    				return true
    			end
    		else 
    			PQR_CustomTarget = PQ_BeaconTarget
    			return true		
    		end
    	else
    		for i = 1, members, 1 do
    			local member = group..tostring(i)
        		if PQ_BeaconTargetName == UnitName(member)  then
        			PQ_BeaconTarget = member
        			PQR_CustomTarget = PQ_BeaconTarget
        			return true
        		end
          	end		
    	end
    end	
    </Lua>
    <RecastDelay>500</RecastDelay><Target>Custom</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability>
    Want to see what it will write to chat,so I can debug it without WoW.Want to see in what place it goes not like intended

    EDIT: OK,I'M AN IDIOT Say me,are u trying to cast it on yourself or u are in party and casting on other player?
    i always test it on myself :P

    but i think having a blank PQ_BeaconTarget was breaking it when you go to check all the things.... so maybe that was it.... maybe haha i pretty much just deleted all the code but the Modifier part, then slowly built it all back up
    ^0^Team Nova's PQR NCC ^0^

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

  13. #4948
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    nowhere in that check does it actually check the player, so whenever we do party size checks we also need to manually add in the player as well at the very end...... that was the whole cause of the "My Pally will heal everyone else fine, just not myself!" problem haha
    yep thats it (: Normally I don't beacon myself in raids,so I constantly forgot about this part ...

    undeclared vars FTW

    EDIT:

    A bit more clean code,added logic that if no members matching PQ_BeaconTargetName found in your group/raid it will set target to player and notify in chat.

    Code:
    <Ability><Name>Beacon (Right Alt)</Name><Default>false</Default><SpellID>53563</SpellID><Actions></Actions>
    <Lua>
    if not BeaconDeclared then
    	PQ_BeaconTarget = "player"
    	PQ_BeaconTargetName = UnitName(PQ_BeaconTarget)
    	BeaconDeclared = true
    end	
    	
    local hasMouseover = UnitExists(&amp;quot;mouseover&amp;quot;)
    local mouseoverFriend = UnitIsFriend(&amp;quot;player&amp;quot;, &amp;quot;mouseover&amp;quot;)
    local group = &amp;quot;party&amp;quot;
    local members = GetNumPartyMembers()
    
    if GetNumRaidMembers() &amp;gt; 0 then group = &amp;quot;raid&amp;quot; members = GetNumRaidMembers() end
    
    if IsRightAltKeyDown() and GetCurrentKeyBoardFocus() == nil then
    	if hasMouseover and mouseoverFriend then
    		local name = UnitName("mouseover")
    		for i = 1, members, 1 do
    			local member = group..tostring(i)
        		if name == UnitName(member)  then
        			PQ_BeaconTarget = member
        			PQ_BeaconTargetName = name
        			PQR_CustomTarget = PQ_BeaconTarget
        			return true
        		end
          	end 
        end
    end
    
    if PQ_BeaconTarget then
    	local Beacon = UnitBuffID(PQ_BeaconTarget, 53563)
    	local BeaconExpire = select(7,UnitBuffID(PQ_BeaconTarget, 53563)) - GetTime()
    
    	if UnitName(PQ_BeaconTarget) == PQ_BeaconTargetName then	
    		if Beacon then
    			if BeaconExpire &amp;lt; 10 then
    				PQR_CustomTarget = PQ_BeaconTarget
    				return true
    			end
    		else 
    			PQR_CustomTarget = PQ_BeaconTarget
    			return true		
    		end
    	else
    		for i = 1, members, 1 do
    			local member = group..tostring(i)
        		if PQ_BeaconTargetName == UnitName(member)  then
        			PQ_BeaconTarget = member
        			PQR_CustomTarget = PQ_BeaconTarget
        			return true
        		end
          	end
          	BeaconDeclared = false	-- Beacon target not found reinit and drop target to player	
          	print(&quot;\124cFFDBFA2A ++ Beacon target not found!!!Beacon placed on player! ++&quot;)
    	end
    end	
    </Lua>
    <RecastDelay>500</RecastDelay><Target>Custom</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability>
    Last edited by Valma; 01-30-2012 at 07:49 AM.

  14. #4949
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    Hey guys!

    I want to apologize for not being here so often the last two weeks. I can promise you though that I have been working hard on the profile to make it just that little bit better.
    I would've released my profile before the weekend, but, I went into labor on Friday and at 11:20pm CEST I gave birth to a perfect baby boy! He was 49cm and weighted 3030g. I'll try and post some pictures that I have on my phone later.

    With Sheepmoon's permission, I'll go through his profile and mix-match a bit, if he's interested we could even work together on it. And if you want buba and have space on your SVN I could host my profile with you.

    Anyhow, I'll try and have it released by Wednesday's nerf patch here in Europe.
    Congratulations, Mentally! We can now add "birth of a child" to the list of things in this enormous thread. That's wonderful!

  15. #4950
    Lofty's Avatar Banned
    Reputation
    37
    Join Date
    Feb 2008
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bu_ba_911; Do you think you will have an update out today? I would like to compare you'rs with all the new stuff you seem to be adding to mine on DS HC.

    ATM im looking at logic for yoj HC (As most healing spells cannot be cast more than 3 (to be safe) times on purple ooze. (Altho we wont be on him again till next week now)

    So stuff like HS, WoG, BoL do not trigger a debuff, so only those would be used, except for ohcrap moments with 1 or 2 FoL and a DL.

    But having trouble getting PQR to know when purple is active o.O (Anyway this has nothing to do with you're update so ill shutup now )
    Last edited by Lofty; 01-30-2012 at 10:46 AM.

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 11:45 AM. 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