Orion Heal adjustment for Christmas Dungeon?

Discussion about the technical aspects of scripting. Ask about all issues involving your freelance projects here.
Post Reply
Deorum
Elder Scribe
Posts: 126
Joined: Fri Aug 31, 2012 7:44 pm

Orion Heal adjustment for Christmas Dungeon?

Post by Deorum »

Code I'm running for the Orion primary ability auto attack (below) is having me burn through bandies in the Christmas quest dungeons. Anyone know what the optimal values are for the waits? I believe it's a 4x reduction, but not sure if I just need to multiply those wait values by 4 or what (it doesn't seem right). I always get my butt handed to me the first time until I realize what I need to modify in my scripts.... thanks.

Code: Select all

function Healing() {
    while (true) {
        if (Player.Hits() < Player.MaxHits() && !Player.Dead() && !Player.Hidden()) {
            Orion.Say('[bandself');
            Orion.Wait(250);
        }
        Orion.Wait(50);
    }
}
User avatar
Wil
Legendary Scribe
Posts: 1228
Joined: Mon Dec 30, 2013 1:19 pm
Location: Seattle, WA, USA
Contact:

Re: Orion Heal adjustment for Christmas Dungeon?

Post by Wil »

The heal delay in the Christmas area is 2 seconds. So change 250 to 2000.
Deorum
Elder Scribe
Posts: 126
Joined: Fri Aug 31, 2012 7:44 pm

Re: Orion Heal adjustment for Christmas Dungeon?

Post by Deorum »

Wil wrote: Mon Dec 09, 2024 12:34 pm The heal delay in the Christmas area is 2 seconds. So change 250 to 2000.
Thanks, Wil. Worked like a charm!
Post Reply