PQR - Rotation Bot menu

User Tag List

Page 515 of 779 FirstFirst ... 15415465511512513514515516517518519565615 ... LastLast
Results 7,711 to 7,725 of 11681
  1. #7711
    Luciferozzy's Avatar Member
    Reputation
    2
    Join Date
    Apr 2011
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Dear NovaTeam or annyone else who is good at useing LUA.

    Iam trying to make a funktion for Monk Uplift skill, but its not working.

    here is what i have so far.

    function UpliftHeal()
    local uplift=0
    for i=1, #members do
    if members[1].HP < 80
    --Renewing Mist
    and UnitBuffID(members[i].unit,115151,"player") then
    uplift=uplift+1
    end
    end

    --Renewing Mist
    if UpliftHeal()>=2
    and UnitPower("player",12)>=2
    --Thunder Focus Tea
    or UnitBuffID("player",116680) then
    return true
    end
    Last edited by Luciferozzy; 01-23-2013 at 05:48 PM. Reason: misstype

    PQR - Rotation Bot
  2. #7712
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Luciferozzy View Post
    Dear NovaTeam or annyone else who is good at useing LUA.

    Iam trying to make a funktion for Monk Uplift skill, but its not working.

    here is what i have so far.
    You didn't copy the whole function from my profile correctly, you need to return the value of uplift and close the function with an end.

    Code:
    function UpliftHeal()
    	local uplift=0
    	for i=1, #members do
    		if members[i].HP < 80
    		--Renewing Mist
    		and UnitBuffID(members[i].unit,115151,"player") then
    		uplift=uplift+1
    		end
    	end
    	return uplift
    end
    Last edited by deadpanstiffy; 01-23-2013 at 06:37 PM.

  3. #7713
    Luciferozzy's Avatar Member
    Reputation
    2
    Join Date
    Apr 2011
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @deadpanstiffy

    Thx for the fast reply

    I was actually copying it from your profile, but since i aint lvl 90 iam useing nova's profile and hope to test yours when i ding 90.
    is it posible for u to make the hole code for uplift like yours?
    and or can i make the function and the ability in the same code? cuse its still not working

  4. #7714
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Luciferozzy View Post
    @deadpanstiffy

    Thx for the fast reply

    I was actually copying it from your profile, but since i aint lvl 90 iam useing nova's profile and hope to test yours when i ding 90.
    is it posible for u to make the hole code for uplift like yours?
    and or can i make the function and the ability in the same code? cuse its still not working
    Use, members[i].HP

    and not members[1].HP

  5. #7715
    Vachiusa's Avatar Contributor
    Reputation
    256
    Join Date
    Jan 2013
    Posts
    227
    Thanks G/R
    22/4
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Anyone can guide me how to check target name/guid of UnitCastingInfo("player") / UnitChannelInfo("player"). Example: cast heal spell on "whos target"?
    Thank you!

  6. #7716
    Luciferozzy's Avatar Member
    Reputation
    2
    Join Date
    Apr 2011
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by deadpanstiffy View Post
    You didn't copy the whole function from my profile correctly, you need to return the value of uplift and close the function with an end.

    Code:
    function UpliftHeal()
    	local uplift=0
    	for i=1, #members do
    		if members[i].HP < 80
    		--Renewing Mist
    		and UnitBuffID(members[i].unit,115151,"player") then
    		uplift=uplift+1
    		end
    	end
    	return uplift
    end
    Its still not working and i have tryed to correct everything that might have been wronge in the code..
    I think i need someone to write the hole code with the function and the casting part.
    Annyone intrested please help

  7. #7717
    Nerder's Avatar Contributor
    Reputation
    117
    Join Date
    Aug 2012
    Posts
    263
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Luciferozzy View Post
    Its still not working and i have tryed to correct everything that might have been wronge in the code..
    I think i need someone to write the hole code with the function and the casting part.
    Annyone intrested please help
    are you using a data file that has a function to associate with the members part?

  8. #7718
    Luciferozzy's Avatar Member
    Reputation
    2
    Join Date
    Apr 2011
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nerder View Post
    are you using a data file that has a function to associate with the members part?
    yes iam useing team nova data
    and monk profile

  9. #7719
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Luciferozzy View Post
    Its still not working and i have tryed to correct everything that might have been wronge in the code..
    I think i need someone to write the hole code with the function and the casting part.
    Annyone intrested please help

    You should still have what you posted earlier below the function itself.

    Code:
    --Renewing Mist
    if UpliftHeal()>=2
    and UnitPower("player",12)>=2
    --Thunder Focus Tea
    or UnitBuffID("player",116680) then
    return true
    end

  10. #7720
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've taken over and updated the old community list as Camaris has stopped updating it apparently. If you want to add your profile to the list, please make a post with a link on that thread and I'll update it.

    http://www.ownedcore.com/forums/worl...ml#post2652794
    Former PQR Developer

  11. #7721
    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)
    I'm here guys! Relax! Demonology is almost done. I do indeed have my hands full at the moment, but it won't be for that long. =) Unfortunately events would have it which made family matters take precedence as my grandmother passed away the 20th (77).
    Nonetheless! I've tried to keep myself busy as she was planning her only great grandson's first birthday party and I've made a lot of progress on the Shadow PvP profile while debugging and improving the other profiles I'm currently working on. Demonology and Shadow should already be ready for the 5.2 class changes as well.

    @imdasandman: Congratulations man! I'm sory happy for you. =)

    @diesall: You're my hero! PQI having that functionality would be beyond awesome.

    @kuukuu: I'm not sure, but, my Shadow, Demonology, Fire and Frost profiles are all not mentioned in the thread, but many outdated profiles are!
    Last edited by Kinky; 01-24-2013 at 05:56 PM.

  12. #7722
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    I'm here guys! Relax! Demonology is almost done. I do indeed have my hands full at the moment, but it won't be for that long. =) Unfortunately events would have it which made family matters take precedence as my grandmother passed away the 20th (77).
    Nonetheless! I've tried to keep myself busy as she was planning her only great grandson's first birthday party and I've made a lot of progress on the Shadow PvP profile while debugging and improving the other profiles I'm currently working on. Demonology and Shadow should already be ready for the 5.2 class changes as well.

    @imdasandman: Congratulations man! I'm sory happy for you. =)

    @diesall: You're my hero! PQI having that functionality would be beyond awesome.

    @kuukuu: I'm not sure, but, my Shadow, Demonology, Fire and Frost profiles are all not mentioned in the thread, but many outdated profiles are!
    Ya, I kept the outdated working ones in case someone felt like updating them or something. Might delete them if they don't work or are bad, etc. Adding your stuff now though.
    Former PQR Developer

  13. #7723
    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)
    @kuukuu: Awesome. =) Thanks man!

  14. #7724
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No problem, figured someone should keep it running and since I'm on here almost every day, why not try and salvage it? XD
    Former PQR Developer

  15. #7725
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    +rep and kudos to you for taking the responsibility kuukuu! Its such a good thread for people searching profiles ^^

Similar Threads

  1. [Bot] PQR PE Next Steps / Future of Rotation Botting
    By Chevrolet1 in forum World of Warcraft Bots and Programs
    Replies: 120
    Last Post: 10-21-2014, 11:47 AM
  2. [Bot] PQR - Rotation Bot
    By Xelper in forum World of Warcraft Bots and Programs
    Replies: 1738
    Last Post: 10-15-2014, 11:00 AM
  3. [Selling] 3 Lifetime Session Keys For Sale, Great for the PQR user looking for a rotation bot
    By cukiemunster in forum World of Warcraft Buy Sell Trade
    Replies: 13
    Last Post: 03-11-2014, 07:18 AM
  4. rotation bot leveling (PQR)
    By classdog in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 09-17-2013, 06:13 PM
  5. [HELP] PQR Rotation Bot Profile Making
    By Missu in forum Programming
    Replies: 0
    Last Post: 10-22-2012, 06:27 AM
All times are GMT -5. The time now is 05:06 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