Recent Posts

Pages: 1 2 [3] 4 5 ... 10
21
Orion UO Scripts / Re: Altiric's Amazing All-Skills Trainer
« Last post by xspirit on December 16, 2023, 09:55:38 AM »
Thanks for sharing  8)
22
Orion UO Client / Re: Orion Map question
« Last post by Kandie on December 13, 2023, 08:17:21 AM »
I was using uo cart but I messed up computer and had to uninstall and reinstall UO and lost my UO cart, so I reinstalled that and can't get it to work now, keep getting a black map :(   
23
Orion UO Client / Re: Orion Map question
« Last post by Crisis on December 13, 2023, 03:03:22 AM »
I have had issues like that as well. When I need to go to specific places, I still use Cartographer. It works with Orion.
24
Orion UO Client / Orion Map question
« Last post by Kandie on December 12, 2023, 06:34:34 PM »
I am trying to figure out how to use the Orion Map for Kampus.  Can anyone help me out Please. Here is my issue:  Kampus locations are like this  example- 132 S and 100 E, now How do I put that in the Orion Map?  Its way different then UO Cartography... Any help is very much appreciated    Thanks   Kandie
25
Orion UO Scripts / Re: Altiric's Amazing All-Skills Trainer
« Last post by hellfire119 on December 09, 2023, 12:42:21 PM »
This is interesting and I can definitely see myself using it, thank you!
26
Orion UO Scripts / Re: New Blacksmithy Script
« Last post by nicorl on December 08, 2023, 02:05:20 PM »
I'm going to try. Thanks!
27
Orion UO Scripts / Re: Altiric's Amazing All-Skills Trainer
« Last post by SERVIUMX on December 05, 2023, 02:45:28 PM »
Thanks!!
28
Orion UO Client / Re: Multiskill Trainer for Orion
« Last post by Gman70 on December 03, 2023, 10:26:38 PM »
Tried using this and the first time I used it for discordance and it worked well. Then I went to try the mage one and it would not clear data or even close, the only way to get rid of the menu was to log out. Not sure if I did something wrong or what?
29
Razor Enhanced / Re: IDOC House Scanner (OSI/FS)
« Last post by prodigyrick on November 21, 2023, 08:49:49 PM »
I get:
[23:45:19] -   File "<string>", line 57, in <module>
[23:45:19] -   File "<string>", line 22, in __init__
[23:45:19] - TypeError: expected List[Int32], got List[int]
30
Orion UO Scripts / Re: Question on primary ability syntax (Whirlwind Attack)
« Last post by altiric on November 20, 2023, 07:19:32 AM »
Getting to this a little late, but here is some info.

Whirlwind is an AbilityStatus so either AbilityStatus('Primary') or AbiliatyStatus('Secondary'). Here are a couple snippets i use for working with special abilities.

Code: [Select]
function have_ability(name){
    return Orion.Contains(Orion.GetCurrentAbilityNames(), name);
}

Code: [Select]
function ability_status(name){
    const abilities = Orion.GetCurrentAbilityNames();
    if(Orion.AbilityStatus('Primary') && abilities[0].match(new RegExp(name, 'i')))
        return true;
    else if(Orion.AbilityStatus('Secondary') && abilities[1].match(new RegExp(name, 'i')))
        return true;
    else
        return false;
}

Code: [Select]
function use_ability(name){
    const abilities = Orion.GetCurrentAbilityNames();
    const primary = Orion.AbilityStatus('Primary');
    const secondary = Orion.AbilityStatus('Secondary');
    const regex = new RegExp(name, 'i');

    if(abilities[0].match(regex) && !primary){
        Orion.SetTimer('ability', 500);
        Orion.UseAbility('Primary', true);
        Orion.Wait(200);
    } else if(abilities[1].match(regex) && !secondary){
        Orion.SetTimer('ability', 500);
        Orion.UseAbility('Secondary', true);
        Orion.Wait(200);
    } else {
        return false;
    }
}

I set a timer when using an ability so i can calculate the mana cost of abilities, since if you use an ability within 3 seconds of another ability, the cost is doubled.
Pages: 1 2 [3] 4 5 ... 10