[PQR] Bossqwerty's MOP Mage Profiles menu

User Tag List

Page 9 of 11 FirstFirst ... 567891011 LastLast
Results 121 to 135 of 155
  1. #121
    tinyblaze's Avatar Contributor CoreCoins Purchaser
    Reputation
    171
    Join Date
    May 2012
    Posts
    573
    Thanks G/R
    0/0
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bossqwerty View Post
    The problem with that is you can't maintain 100% invocation uptime in all situations, so this would be a huge loss in dps because it wouldn't cast until you had the buff. There would have to be some other kind of check too, I'm still not sure how to fix it.
    and actually i find it more benefical to let the buff expire so you can profit of 5more sec of invocation rather than refreshing it with5 seconds before

    [PQR] Bossqwerty's MOP Mage Profiles
  2. #122
    alucard1's Avatar Active Member
    Reputation
    36
    Join Date
    Oct 2007
    Posts
    246
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tinyblaze View Post
    also, is it possible for the fire profile single target, on the move to have it cast instant pyro and inferno blast if needed and then cast scorch
    You can change that be changing the order in the rotation list. For example, i changed the frost script to always use FFB and IL when moving if i have procs up, otherwise it scorches.

    Originally Posted by tinyblaze View Post
    and actually i find it more benefical to let the buff expire so you can profit of 5more sec of invocation rather than refreshing it with5 seconds before
    Manual cast will be best, what you want is after you hold CTRL to cast evo, to wait till you have the buff before it continues.

  3. #123
    tinyblaze's Avatar Contributor CoreCoins Purchaser
    Reputation
    171
    Join Date
    May 2012
    Posts
    573
    Thanks G/R
    0/0
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i keep control pressed and it finished the evocation and starts a fireball but sometimes it can happen that with the button pressed and the cast finished that i don''t receive the buff

  4. #124
    Dyk's Avatar Member
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tinyblaze View Post
    i keep control pressed and it finished the evocation and starts a fireball but sometimes it can happen that with the button pressed and the cast finished that i don''t receive the buff
    Yeah, what I've been doing to yield the best results is just letting the buff fall off.

    However, the only way I can think of fixing it is to have something like this (I only know Java so I'm writing it in that, you can try your best to translate):

    Basically, encase all of the code for casting in a condition that shows whether you have the buff after casting an evocation so that it wont interrupt it without applying the buff.

    public boolean done = true;
    public void doInvocation(){
    done = false; //Disallow casting
    CastSpell("Evocation") //Just use the equivalent of that (the returning true to or however you do it) //Cast evocation
    while(Player.hasInvocationBuff() == false){ //While you don't have the buff the bot will wait
    wait(); //code to wait
    }
    done = true; //When you obtain the buff it will re-allow casting
    }

  5. #125
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can you combine all of the profile into 1?

    for Aoe you have a toggle, Left shift or soemthing. Same with CDs, right control or soemthing.


    Thanks!
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  6. #126
    Waffle's Avatar Contributor CoreCoins Purchaser
    Reputation
    115
    Join Date
    Sep 2007
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Will the 5.1 change to Combustion require any changes to the current coding of Combustion in your profiles Boss?

  7. #127
    alucard1's Avatar Active Member
    Reputation
    36
    Join Date
    Oct 2007
    Posts
    246
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by waffle2 View Post
    Will the 5.1 change to Combustion require any changes to the current coding of Combustion in your profiles Boss?
    Their should be no real changes, Ignite is now 100% counted, instead of 50% meaning big ignite = big combustion.

    Should add, this is already applied in the game and you can test it out yourself, the 5.1 change is just a tooltip update.
    Last edited by alucard1; 10-16-2012 at 01:01 PM.

  8. #128
    tinyblaze's Avatar Contributor CoreCoins Purchaser
    Reputation
    171
    Join Date
    May 2012
    Posts
    573
    Thanks G/R
    0/0
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i tried searching the code for keypressed if but i couldn't find any for the rest of the letters like q,e,f1,f2 i mean
    if iskeypressed q , how can i code it?

  9. #129
    alucard1's Avatar Active Member
    Reputation
    36
    Join Date
    Oct 2007
    Posts
    246
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tinyblaze View Post
    i tried searching the code for keypressed if but i couldn't find any for the rest of the letters like q,e,f1,f2 i mean
    if iskeypressed q , how can i code it?
    You should look in the ability editor and see how things are done

    Code:
    if IsQKeyDown() then
    return true
    end
    got that from seeing

    if IsLeftControlKeyDown() then
    return true
    end

  10. #130
    tinyblaze's Avatar Contributor CoreCoins Purchaser
    Reputation
    171
    Join Date
    May 2012
    Posts
    573
    Thanks G/R
    0/0
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    that's the first thing i tried, but it didn't work for me

  11. #131
    alucard1's Avatar Active Member
    Reputation
    36
    Join Date
    Oct 2007
    Posts
    246
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tinyblaze View Post
    that's the first thing i tried, but it didn't work for me
    Did you remember to add the ability ID correctly?

  12. #132
    Waffle's Avatar Contributor CoreCoins Purchaser
    Reputation
    115
    Join Date
    Sep 2007
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey there, hoping someone can help me out, is there a way to make Combustion go off at only when Ignite reaches a certain point? Using Boss' profile it has been popping it very early so would like to set my own threshold for it.

  13. #133
    alucard1's Avatar Active Member
    Reputation
    36
    Join Date
    Oct 2007
    Posts
    246
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tinyblaze View Post
    that's the first thing i tried, but it didn't work for me
    it seems you can only use Alt, shift and ctrl modifiers atm as that's all thats coded.

  14. #134
    Dyk's Avatar Member
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I fixed the Invocation problem myself. Works like a charm.

  15. #135
    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 alucard1 View Post
    it seems you can only use Alt, shift and ctrl modifiers atm as that's all thats coded.
    You can use Mouse Buttons also
    Looking for exploiters and botters to Elder Scrolls Online.

Page 9 of 11 FirstFirst ... 567891011 LastLast

Similar Threads

  1. [PQR] Gabbz Mage Profiles
    By Gabbz in forum WoW Bot Maps And Profiles
    Replies: 207
    Last Post: 07-18-2016, 08:00 PM
  2. [PQR] AzN's Frost Mage and Prot Warrior profiles
    By aznracrx in forum WoW Bot Maps And Profiles
    Replies: 37
    Last Post: 09-30-2013, 04:02 PM
  3. [PQR] Mage Profiles
    By discobob in forum WoW Bot Maps And Profiles
    Replies: 11
    Last Post: 04-07-2013, 04:46 PM
  4. [PQR] Nilrem Fire Mage profile
    By nilrem2004 in forum WoW Bot Maps And Profiles
    Replies: 7
    Last Post: 03-19-2013, 09:32 AM
  5. [PQR REQUEST] PVP Frost Mage (will donate!!)
    By aLorzy91 in forum WoW Bot Maps And Profiles
    Replies: 0
    Last Post: 09-05-2012, 08:36 PM
All times are GMT -5. The time now is 01:34 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