Page 1 of 1

Noob Script Question abot magery

Posted: 2005-07-13 05:48:37
by walk3r
This is how my macro for cast FS using scroll works:
sub Scroll_FS()
uo.waittargetlast()
uo.usetype('0x1F5F')
endsub

And this the regular way:

sub Flame_Strike()
uo.waittargetlast()
uo.cast('Flame Strike')
endsub

Could anyone tell me if this is the fast and best way to use Magery on PVP, or there is any different script to cast it faster?

Glad for your patience =]

Posted: 2005-07-13 07:33:25
by TAHK_by
I think this is fastest scrips for FS

Sub c_FlameStrike()
UO.Cast('Flame Strike','laststatus')
Endsub

Posted: 2005-07-13 11:31:06
by flake
Tank, there is absolutely no difference in the speed between your form and the author's one. Both will start casting at the same speed.

Posted: 2005-07-13 12:43:26
by TAHK_by
May be ... :D

But you can't check it by your eyes.

Posted: 2005-07-13 15:28:20
by walk3r
I´ll try your way =]

Posted: 2005-07-13 15:53:13
by walk3r
It did not work with Scroll.

sub Scroll_FS()
uo.usetype('0x1F5F','laststatus')
endsub

Is that correct?

Posted: 2005-07-13 16:12:34
by flake
No, you can't put your target inside UO.UseType.
The correct form:

UO.WaitTargetObject( 'laststatus' )
UO.UseType( '0x1F5F' )