What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

KingWoW Mage

Great CC. There is one problem thou, its doesnt stop casting when rotation is paused in tyrael. Elemental is casting Freeze when gaining aggro, Evocation is still being cast etc. Any way to stop it completely? Thanks!
 
Switch off autotarget and hit esc. or target yourself and than hit esc. Or stop the bot. A Pausekey for the bot itself would be a great help. The CC is greedy for dps and kills *gg*. really damn amazing piece of code.
 
Switch off autotarget and hit esc. or target yourself and than hit esc. Or stop the bot. A Pausekey for the bot itself would be a great help. The CC is greedy for dps and kills *gg*. really damn amazing piece of code.

Yeah thats a possible solution but i really like the autotarget feature. In the older builds there was a pause function inside the cc (not tyrael) which worked flawless.
 
My Mages doesnt using Alter Time much in its rotation along with Icy veins and Presence of mind. wearing 2 piece teir 15 the bonus from Alter time counts for alot. Can u please check into this
 
It?s waiting for 2 FoF and a brainfreeze procc for AT. If you don?t want to wait till it proccs this way, you?ll have to do AT on your own atm. I do this with a stopcasting Makro. Oh and PoM is nearly useless for Frostmages with better gear.
What you get? Depends on your hasterate. An instant Frostbolt every 1,5 Minutes will save 0.07 seconds (if legendary Meta procc) or 0.4 Seconds with my gear. Greater mobility every 25 Seconds is much better. ;)
 
New to KingWoW and wanted to try it out and it sounds nice, but 3 Zips available for download? is the File Type: zip RaidBot_v3.zip the latest?
 
New to KingWoW and wanted to try it out and it sounds nice, but 3 Zips available for download? is the File Type: zip RaidBot_v3.zip the latest?

Raidbot_XXX.zip are basebot. They are pretty old now i suggest use Tyrael's basebot with framelock enabled. Use the latest svn repos of kingwow.
The CC is the kingwow zip file but it is pretty old (rev 174 we are at 239)! you can dowload it but UPDATE asap using for example tortoise SVN to latest rev.
 
Last edited:
I?d say frost is really done atm and switch to fire. Only (pve) issue is probably a check for t15 2piece Bonus to fire off Icy Veins and Alter Time together ~2 Seconds after Frozen Orb and don?t delay Alter Time anymore.
 
Hey attilio76 hope things are going well for you, How hard do you think it would be to implement hotkeys to use cd's for example lets say heroic or normal mode Jinrohk 1st boss in ToT and lets take Fire mage as an example on it you get the damage buff in the pool and that doesn't come out for 1 minute into the fight, setting alter time to manual is the easiest solution but at the same time getting it to not burn PoM/pyro Procs to do this is near impossible. So how about adding some kind of hot key settings where I can assign a key to make it do alter time Pom pyro combo when I press key that's I can assign or is preassigned. That way it can be saved for the pools. Instead of it just burning the cd's as soon as it gets the proper procs, You could essentially control the burst and when you want to really nuke that way. Tell me what you think about doing that. later


Edit: if any other users of this CC like this Idea let him know and see what happens!!
 
Hi Attilio76,

What about rewrite the Fire Mage as per my recommendations ? I still make higer DPS manually +80 / 100 k than the CC.
The reason for this is as I explained : The main DPS comes from our instant Pyro! and we want to cast them as much as possible.
The mechanic to rise your chances of getting more instant Pyro! is to queue your PYROBLAST_PROC and cast Fireball untill you get a HEATING_UP proc then cast PYRO! and only then, but the problem with the CC is that it casts instant Pyro! as soon as the PYROBLAST_PROC occurs.

Let's make it more clear :

At pull : Under Invoker's Energy, use engi gloves, pop mirror images, use pot, hard cast Pyro, apply Living Bomb
You got lucky and first Pyro procs the HEATING_UP => cast Inferno Blast to make a new Pyro! proc DON'T fire that PYRO! but cast Fireball untill HEATING_UP procs, then fire the Pyro!

You have more chances to transform your HEATING_UP proc into an instant Pyro! when you fire a Pyro! proc and your Inferno blast is on CD

EDIT :

I added a condition to include the HEATING_UP proc for the use of Alter Time :

if (utils.CanCast(ALTER_TIME) && FireMageSettings.Instance.CDUseAlterTime == FireMageSettings.CDUseType.COOLDOWN
&& utils.isAuraActive(PYROBLAST_PROC) && utils.isAuraActive(HEATING_UP))

if (utils.CanCast(ALTER_TIME) && FireMageSettings.Instance.CDUseAlterTime == FireMageSettings.CDUseType.BOSS
&& utils.isAuraActive(PYROBLAST_PROC) && utils.isAuraActive(HEATING_UP))

Works like a charm and gives an extra DPS to my burst.

The only thing is that you need to add another condition for the Invoker's Energy buff before the use of Alter Time.
The CC should check if Invoker's Energy buff time left is > than x seconds before use AT because often it wastes the use of it by casting AT while the Invoker's Energy buff is about to fade, therefore it casts Evocation twice and makes you lose huge DPS...

So something like && utils.MyAuraTimeLeft(INVOCATION_BUFF, player) > 30
 
Last edited:
Hi Attilio76,

What about rewrite the Fire Mage as per my recommendations ? I still make higer DPS manually +80 / 100 k than the CC.
The reason for this is as I explained : The main DPS comes from our instant Pyro! and we want to cast them as much as possible.
The mechanic to rise your chances of getting more instant Pyro! is to queue your PYROBLAST_PROC and cast Fireball untill you get a HEATING_UP proc then cast PYRO! and only then, but the problem with the CC is that it casts instant Pyro! as soon as the PYROBLAST_PROC occurs.

Let's make it more clear :

At pull : Under Invoker's Energy, use engi gloves, pop mirror images, use pot, hard cast Pyro, apply Living Bomb
You got lucky and first Pyro procs the HEATING_UP => cast Inferno Blast to make a new Pyro! proc DON'T fire that PYRO! but cast Fireball untill HEATING_UP procs, then fire the Pyro!

You have more chances to transform your HEATING_UP proc into an instant Pyro! when you fire a Pyro! proc and your Inferno blast is on CD
it does this its done this since the firemage was developed
 
it does this its done this since the firemage was developed

if (utils.isAuraActive(PYROBLAST_PROC) && utils.CanCast(PYROBLAST, target))
{
utils.LogActivity(PYROBLAST, target.Name);
return utils.Cast(PYROBLAST, target);

No it does not, just edit the code to check or at least your eyes when you play...

A good way would be to have something like this :

if (utils.isAuraActive(PYROBLAST_PROC) && utils.isAuraActive(HEATING_UP) && utils.CanCast(PYROBLAST, target))
{
utils.LogActivity(PYROBLAST, target.Name);
return utils.Cast(PYROBLAST, target);
 
Last edited:
if (utils.isAuraActive(PYROBLAST_PROC) && utils.CanCast(PYROBLAST, target))
{
utils.LogActivity(PYROBLAST, target.Name);
return utils.Cast(PYROBLAST, target);

No it does not, just edit the code to check or at least your eyes when you play...
Sorry friend but the CC properly buffs with RoP or Invo and it also generates Pyroblast! procs using Inferno Blast when heating up proc comes up, it also does the Pyroblast! Presence of Mind, Alter Time combo the only thing it doesn't do is use Presence of mind on cd when it could since it is on a 1.5 minute CD unlike the alter time on 3 minute CD. If its not doing that for you than post a log something must not be functioning correctly for you. However I am running it right now in an lfr testing and its working fine, ITs using my pyro procs and queing to create instant pyro procs. so I'm not sure what you want it to do cancel fireball cast? inorder to make a pyro proc? that's a dps loss

Edit: You want it to hard cast pyroblast when it gets a heating up proc?
 
Has anyone compared the use of King-WoW in Tyrael compared to say PureRotation? What gives better DPS?
 
Sorry friend but the CC properly buffs with RoP or Invo and it also generates Pyroblast! procs using Inferno Blast when heating up proc comes up, it also does the Pyroblast! Presence of Mind, Alter Time combo the only thing it doesn't do is use Presence of mind on cd when it could since it is on a 1.5 minute CD unlike the alter time on 3 minute CD. If its not doing that for you than post a log something must not be functioning correctly for you.

I think you are a bit confused or I'm not speaking english good enough for you to understand what I say.
The CC works great, it does everything well for an average mage as you seem to be but it's not good enough and can be improved to do insane DPS.

However I am running it right now in an lfr testing and its working fine, ITs using my pyro procs and queing to create instant pyro procs.

It's impossible that the CC queues the Pyro! procs to wait for a Heating Up proc before casting the instant Pyro! as it is not designed for... or you have a private version of the CC to do so.

Sorry so I'm not sure what you want it to do cancel fireball cast? inorder to make a pyro proc? that's a dps loss

Where the hell did you read this ? The CC should cast Fireball as a filler when you have a Pyro! proc active to trigger a Heating Up proc and then and only then cast then instant Pyro!

Edit: You want it to hard cast pyroblast when it gets a heating up proc?

Answered above
 
I think you are a bit confused or I'm not speaking english good enough for you to understand what I say.
The CC works great, it does everything well for an average mage as you seem to be but it's not good enough and can be improved to do insane DPS.
I think it is cute that you are here on a forum for bots on a routine for a mage using comments like an average mage, since you are such an extraordinary one using a bot/routine to play for you. Also , since we are insulting intelligence with comments about speaking English lets look at your sentence and make corrections shall we.

(I think you are a bit confused or I'm not speaking english good enough for you to understand what I say.)
First capitalize the word English as its a pro-noun, second it should be " I'm not speaking English well enough what I said." Since you are not actively saying it present form but have said it past tense, but Thank you.
Now back to what you want it to do, I completely understand what you want it to do. You want it to gain pyroblast proc and a heating up before using casting the pyroblast proc, but this doesn't mean 100% chance to get a crit from the pyroblast! just because you have Heating Up when you use the proc will you? M]ost likely because if you are playing fire then you have atleast 38% crit rating with only self buffs anyway so after raid buffs and Crit mass multiplier you will be over 50% crit and will be rolling pyro/heating up procs steadily anyway. However this is Attilio76's CC and he will do with it as he sees fit and if you can provide him with the information that supports what you want it to do from mage forums and such he will make the changes needed, as of now it follows the Fire mage compendium posted up on elitest jerks. I'll not reply anymore I would hate to be told I was trolling on this wonderful CC's thread.
Cheers friend
 
I think it is cute that you are here on a forum for bots on a routine for a mage using comments like an average mage, since you are such an extraordinary one using a bot/routine to play for you.

I d'ont need to use the CC to play instead of me, the way and the purpose I'm using the CC is my own businessa and it's out of topic.

as of now it follows the Fire mage compendium posted up on elitest jerks

I can tell you've got serious references, but i'm sorry to tell you the EJ comp is outdated, the most interesting post would be Hamlet's with Rotation A (save HS procs until HS+HU)).
I can suggest you reading Vykina's thread on Method's website LINK

I'll not reply anymore I would hate to be told I was trolling on this wonderful CC's thread.

Excellent decision, because it's actually what you do. Do my initial post says : "Hello vibrator" or Hello Atillio76 ?
 
Back
Top