Page 1 of 1

Looking for: Orion Auto Attacker Script

Posted: Sun May 03, 2020 3:08 pm
by Coalfire
Looking for a script for Orion for auto attacking.

Basically... Target nearest Foe.
Cast Consecrate weapon as needed
Cast Divine Fury as needed
Use Primary Weapon Skill on a timer

Any help would be great. Would love to use Orion more, but I've been spoiled with my Macros in UOSteam.

Re: Looking for: Orion Auto Attacker Script

Posted: Fri Nov 06, 2020 6:33 pm
by Orionesss
function attackClosest()
{
Orion.IgnoreReset();
Orion.Ignore(self);
while (true)
{
var enemy = Orion.FindType("-1 | !0x0191 | !0x0190 ", -1, "ground", "mobile | near | ignorefriends", "15", "gray | criminal | enemy | red");
Orion.Wait(50);
if (enemy.length > 0)
{
Orion.UseSkill("Discordance");
Orion.Wait(50);
Orion.TargetObject(enemy[0]);
Orion.Wait(50);
Orion.Attack(enemy[0]);
}
}
}

this is what I have.