Recent Posts

Pages: 1 ... 8 9 [10]
91
ScriptUO Application / Re: Returning player
« Last post by HellFish on July 21, 2023, 11:46:54 AM »
Did you have any luck?
92
Orion UO Scripts / Re: Sampire Helper
« Last post by Kandie on July 19, 2023, 04:27:37 PM »
consecrate weapon    Divine fury    and would be nice if it used rose of trinsic when needed and be able to turn any of these off when not needed.
93
Orion UO Scripts / Re: Sampire Helper
« Last post by The Ghost on July 19, 2023, 03:53:57 PM »
Which spell, do you have in might,  Like  D Fury and EoE. 
94
Orion UO Scripts / Re: Sampire Helper
« Last post by Kandie on July 19, 2023, 07:54:17 AM »
Can you please add Chivalry to this script?  I like being able to rez my co-players and use some of the chiv spells. Would be much appreciated... TIA    Kandie
95
Orion UO Scripts / Re: New Blacksmithy Script
« Last post by nope on July 11, 2023, 01:22:17 AM »
Will try. Tanks
96
Orion UO Scripts / Re: Sampire Helper
« Last post by DieselKush420 on July 09, 2023, 06:03:58 PM »
can u please update it i am not script smart and still cannot find one to run my samp
thank you
97
ScriptUO Application / Returning player
« Last post by El_Remo on July 09, 2023, 10:28:11 AM »
 Hey gang its been a long long time lol. I am going to be playing again so i thought id drop by. The only issue i ran into was I cant recover my EUO account to download the current build. The site also isnt allowing me to make a new account. Its not sending emails out for verification. Is there an alternate location to download the client?  Thanks for any help.
98
Orion UO Scripts / Re: Sampire Helper
« Last post by altiric on July 06, 2023, 12:09:26 PM »
Heh there actually should have been a cast function in there. You are the first person to point out it's missing/broken. I'll add it in if I ever do an update. Right now there seems to be no interest, so no reason too. Your fix should work fine, may need to add a slight delay after Orion.Cast since my cast function adds the delays based on fcr, etc.
Thank you for your answer. You are right, must be delay because script activate Whirwind attack very fast. And also tried to activate this attack with busido abilities but it no possible.  So modification in progress. If you can give me some advices i will be appreciate. Thank you in advance.

Code: [Select]
function cast(spell, target){
    var fcr = (6 - Player.FCR()) / 4 * 1000 + 250;
        Orion.CancelWaitTarget();
        if(Orion.HaveTarget())
            Orion.CancelTarget();
        if(Player.Frozen())
            return;

        if(target)
            Orion.CastTarget(spell, target);
        else
            Orion.Cast(spell);
       
        Orion.Wait(500);
        while(Player.Frozen() && !Player.Paralyzed())
            Orion.Wait(10);

        Orion.Wait(fcr);
}

Adding that to the script should solve a lot of issues. If you find anymore, feel free to post them here. Seems more people are getting interested, i may do an update to make sure everything is tweaked correctly and add some other features i have handy if it keeps up :)
99
Orion UO Scripts / Re: Sampire Helper
« Last post by crashtestdummy on July 06, 2023, 08:30:35 AM »
 :) I am SO SO SO very looking forward to trying/using this out...... thank you so much!  Look forward to using it and offering up feedback!
100
Orion UO Scripts / Re: Sampire Helper
« Last post by JackWalters on July 03, 2023, 11:47:23 PM »
Heh there actually should have been a cast function in there. You are the first person to point out it's missing/broken. I'll add it in if I ever do an update. Right now there seems to be no interest, so no reason too. Your fix should work fine, may need to add a slight delay after Orion.Cast since my cast function adds the delays based on fcr, etc.
Thank you for your answer. You are right, must be delay because script activate Whirwind attack very fast. And also tried to activate this attack with busido abilities but it no possible.  So modification in progress. If you can give me some advices i will be appreciate. Thank you in advance.
Pages: 1 ... 8 9 [10]