Page 1 of 1

Orion Heal adjustment for Christmas Dungeon?

Posted: Mon Dec 09, 2024 8:52 am
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);
    }
}

Re: Orion Heal adjustment for Christmas Dungeon?

Posted: Mon Dec 09, 2024 12:34 pm
by Wil
The heal delay in the Christmas area is 2 seconds. So change 250 to 2000.

Re: Orion Heal adjustment for Christmas Dungeon?

Posted: Mon Dec 09, 2024 1:30 pm
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!