Looking for: Orion Auto Attacker Script

If you make a Client-side script you can publish it here for other players to use
Post Reply
User avatar
Coalfire
Master Scribe
Posts: 56
Joined: Wed Jan 15, 2020 11:51 pm

Looking for: Orion Auto Attacker Script

Post 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.
Orionesss
Apprentice Scribe
Posts: 14
Joined: Fri Oct 16, 2020 12:39 am

Re: Looking for: Orion Auto Attacker Script

Post 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.
Post Reply