I am making my first macro... and it seem when there are more than one spell, it just manage to cast one spell from time to time ..
I tryed true delay, and higher to ridiculously long delay... and
Spells just fizzle even of the delay is 3000, 15000, 25000 ...
I dont even see the target after a spell it just keep casting power words and nothing happen
If I use Relative tile now... absolutely no spells are cast just sometimes it manage to cast the first spell that is on self...
Ive been using razor and uosteam for years and now it seem I dont understand nothing its probably a setting.
Ive tryed in main - options to set wait or target delay (ms) to 15000 and keep delay also to 15000ms and it does not help at all.
So obliviously I dont understad how delay work
and Relative tile is absolutely not working.
Client version is 5.0.9.12 on UO Excelsior
So here im tryed to cast druid spells -regenerative trees on self and then explosions around the character
function GeneratedScript_221618()
{
Orion.Say('[cs enchantedgrove');
if (Orion.WaitForTarget(101000))
Orion.TargetObject('self');
Orion.Say('[cs volcaniceruption');
if (Orion.WaitForTarget(101000))
Orion.TargetTileRelative('any', -1, -7, -5);
Orion.Say('[cs volcaniceruption');
if (Orion.WaitForTarget(101000))
Orion.TargetTileRelative('any', -1, 8, 15);
Orion.Say('[cs volcaniceruption');
if (Orion.WaitForTarget(101000))
Orion.TargetTileRelative('any', 9, -7, -5);
Orion.Say('[cs volcaniceruption');
if (Orion.WaitForTarget(101000))
Orion.TargetTileRelative('any', -9, 1, -5);
}
I am making my first macro... and it seem when there are more than one spell, it just manage to cast one spell from time to time .. I tryed true delay, and higher to ridiculously long delay... and Spells just fizzle even of the delay is 3000, 15000, 25000 ... I dont even see the target after a spell it just keep casting power words and nothing happen
If I use Relative tile now... absolutely no spells are cast just sometimes it manage to cast the first spell that is on self...
Ive been using razor and uosteam for years and now it seem I dont understand nothing its probably a setting. Ive tryed in main - options to set wait or target delay (ms) to 15000 and keep delay also to 15000ms and it does not help at all.
So obliviously I dont understad how delay work and Relative tile is absolutely not working.
Client version is 5.0.9.12 on UO Excelsior
So here im tryed to cast druid spells -regenerative trees on self and then explosions around the character
function GeneratedScript_221618() { Orion.Say('[cs enchantedgrove'); if (Orion.WaitForTarget(101000)) Orion.TargetObject('self'); Orion.Say('[cs volcaniceruption'); if (Orion.WaitForTarget(101000)) Orion.TargetTileRelative('any', -1, -7, -5); Orion.Say('[cs volcaniceruption'); if (Orion.WaitForTarget(101000)) Orion.TargetTileRelative('any', -1, 8, 15); Orion.Say('[cs volcaniceruption'); if (Orion.WaitForTarget(101000)) Orion.TargetTileRelative('any', 9, -7, -5); Orion.Say('[cs volcaniceruption'); if (Orion.WaitForTarget(101000)) Orion.TargetTileRelative('any', -9, 1, -5); }
Thanks for helping my ignorance