Anything and all.
Moderators: Murderator+, Murderator
-
walk3r
- Posts: 3
- Joined: 2005-07-11 22:31:57
Post
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 =]
-
TAHK_by
- Posts: 21
- Joined: 2005-07-01 09:59:53
- Location: Minsk, Belarus
Post
by TAHK_by »
I think this is fastest scrips for FS
Sub c_FlameStrike()
UO.Cast('Flame Strike','laststatus')
Endsub
-
flake
- Expert!
- Posts: 746
- Joined: 2004-08-11 23:56:17
- Location: The Citadel
-
Contact:
Post
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.
-
TAHK_by
- Posts: 21
- Joined: 2005-07-01 09:59:53
- Location: Minsk, Belarus
Post
by TAHK_by »
May be ...
But you can't check it by your eyes.
-
walk3r
- Posts: 3
- Joined: 2005-07-11 22:31:57
Post
by walk3r »
I´ll try your way =]
-
walk3r
- Posts: 3
- Joined: 2005-07-11 22:31:57
Post
by walk3r »
It did not work with Scroll.
sub Scroll_FS()
uo.usetype('0x1F5F','laststatus')
endsub
Is that correct?
-
flake
- Expert!
- Posts: 746
- Joined: 2004-08-11 23:56:17
- Location: The Citadel
-
Contact:
Post
by flake »
No, you can't put your target inside UO.UseType.
The correct form:
UO.WaitTargetObject( 'laststatus' )
UO.UseType( '0x1F5F' )