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.
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.
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
}
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
Will the 5.1 change to Combustion require any changes to the current coding of Combustion in your profiles Boss?
Last edited by alucard1; 10-16-2012 at 01:01 PM.
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?
that's the first thing i tried, but it didn't work for me
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.
I fixed the Invocation problem myself. Works like a charm.