Quote:
Originally Posted by necrodoom
(Post 33436188)
But paraly how the skills will work in auto?Only if you use them manualy i think.Forgive if i think wrong:)
|
They won't work in auto, you have to put every skillname in the right rotation to this part of the script
Quote:
Originally Posted by Paraly
#DO=300000;
Command=/skill Chain of Suffering;
Delay=2350;
MoveTo=619.3,479,213.004,True,True;
Command=/skill Earth's Wrath;
Delay=1850;
MoveTo=617.3,481,213.004,True,True;
Command=/skill Aero Snare;
Delay=550;
MoveTo=615.3,479,213.004,True,True;
Command=/skill Enfeebling Burst;
Delay=1350;
MoveTo=617.3,477,213.004,True,True;
Command=/skill Punishing Earth;
Delay=2850;
MoveTo=619.3,476,213.004,True,True;
Command=/skill Thunderbolt;
Delay=550;
MoveTo=617.3,477,213.004,True,True;
Command=/skill Divine Spark;
Delay=550;
MoveTo=615.3,479,213.004,True,True;
Command=/skill Slashing Wind;
Delay=750;
MoveTo=617.3,481,213.004,True,True;
Command=/skill Divine Touch;
Delay=550;
MoveTo=619.3,479,213.004,True,True;
Command=/skill Retribution Lightning;
Delay=550;
MoveTo=617.3,477,213.004,True,True;
Command=/skill Summon Holy Servant;
Delay=750;
MoveTo=615.3,476,213.004,True,True;
Command=/skill Summon Noble Energy;
Delay=750;
MoveTo=617.3,477,213.004,True,True;
Command=/skill Call Lightning;
Delay=3350;
MoveTo=619.3,479,213.004,True,True;
Command=/skill Chastise;
Delay=750;
MoveTo=617.3,481,213.004,True,True;
Command=/skill Infernal Blaze;
Delay=750;
MoveTo=615.3,479,213.004,True,True;
Command=/skill Smite;
Delay=1850;
MoveTo=617.3,477,213.004,True,True;
Command=/skill Thunderbolt;
Delay=550;
MoveTo=619.3,476,213.004,True,True;
Command=/skill Divine Spark;
Delay=550;
MoveTo=617.3,477,213.004,True,True;
Command=/skill Life Curtain;
Delay=450;
MoveTo=615.3,479,213.004,True,True;
Command=/skill Penance;
Delay=350;
Command=/Use Fine Recovery Serum;
MoveTo=617.3,481,213.004,True,True;
Command=/select %CHARNAME;
Delay=150;
Command=/select Unstable Triroan;
Delay=150;
#UNTIL=%TargetDead,;
|
Take a look at the cast time / motion time of the skills you use, you have to adjust the delay after the skill.
For example:
[Only registered and activated users can see links. Click Here To Register...] from Sorcerer has 4 seconds Cast time, for this example we add it as first skill to the rotation it would look like this
Code:
#DO=300000;
Command=/skill Storm Strike; <--- Skillname
Delay=4000;<--- the delay in milliseconds
MoveTo=619.3,479,213.004,True,True;
Command=/skill Earth's Wrath;
Delay=1850;
MoveTo=617.3,481,213.004,True,True;
Command=/skill Aero Snare;
Delay=550;
MoveTo=615.3,479,213.004,True,True;
Command=/skill Enfeebling Burst;
Delay=1350;
MoveTo=617.3,477,213.004,True,True;
Command=/skill Punishing Earth;
Delay=2850;
MoveTo=619.3,476,213.004,True,True;
Command=/skill Thunderbolt;
Delay=550;
MoveTo=617.3,477,213.004,True,True;
Command=/skill Divine Spark;
Delay=550;
MoveTo=615.3,479,213.004,True,True;
Command=/skill Slashing Wind;
Delay=750;
MoveTo=617.3,481,213.004,True,True;
Command=/skill Divine Touch;
Delay=550;
MoveTo=619.3,479,213.004,True,True;
Command=/skill Retribution Lightning;
Delay=550;
MoveTo=617.3,477,213.004,True,True;
Command=/skill Summon Holy Servant;
Delay=750;
MoveTo=615.3,476,213.004,True,True;
Command=/skill Summon Noble Energy;
Delay=750;
MoveTo=617.3,477,213.004,True,True;
Command=/skill Call Lightning;
Delay=3350;
MoveTo=619.3,479,213.004,True,True;
Command=/skill Chastise;
Delay=750;
MoveTo=617.3,481,213.004,True,True;
Command=/skill Infernal Blaze;
Delay=750;
MoveTo=615.3,479,213.004,True,True;
Command=/skill Smite;
Delay=1850;
MoveTo=617.3,477,213.004,True,True;
Command=/skill Thunderbolt;
Delay=550;
MoveTo=619.3,476,213.004,True,True;
Command=/skill Divine Spark;
Delay=550;
MoveTo=617.3,477,213.004,True,True;
Command=/skill Life Curtain;
Delay=450;
MoveTo=615.3,479,213.004,True,True;
Command=/skill Penance;
Delay=350;
Command=/Use Fine Recovery Serum;
MoveTo=617.3,481,213.004,True,True;
Command=/select %CHARNAME;
Delay=150;
Command=/select Unstable Triroan;
Delay=150;
#UNTIL=%TargetDead,;
|