Ciao raga, al momento uso questo script :
;==================================
; Script Name: The Lightning Striker
; Author: ProFF7
; Version: 1.1
; Client Tested with: 5.0.6b
; EUO version tested with: EUOX 1.5 ver 115
; Shard OSI / FS: UO Legends
; Revision Date: 06-12-07
; Public Release:
; Purpose: Automated Use of Lightning Strike without the need of pressing hotkey every time
; you swing your weapon. Using Primary or Secondary weapon special move will stop
; using LS until the special move is executed
;
; Instructions: Make sure you have your Special Move and Lightning Strike icons on the screen,
; and easily viewable and not obscured by other elements. also, make sure
; Lightning Strike is deselected before running this script.
; when ready, hit play, and follow instructions. you SHOULD set your hotkeys
; to activate special moves directly thru UO, not razor or other program,
; for much better performance. please vote if this was useful for you, thanks.
;==================================
gosub setpixel-ls
gosub setpixel-primary
gosub setpixel-secondary
mainloop:
gosub check-primary
gosub check-secondary
gosub check-primary
gosub check-secondary
if #mana > 5
gosub exec-ls
goto mainloop
;
;
sub setpixel-ls
event macro 15 149
display ok move the mouse to Lightning Strike Button. you have 2 seconds
wait 2s
savePix #CURSORX #CURSORY 1
wait 5
return
;
sub setpixel-primary
event macro 35 0
display ok move the mouse to Primary Weapon Move button. you have 2 seconds
wait 2s
savePix #CURSORX #CURSORY 2
wait 5
return
;
sub setpixel-secondary
event macro 36 0
display ok move the mouse to secondary Weapon Move button. you have 2 seconds
wait 2s
savePix #CURSORX #CURSORY 3
wait 5
event macro 15 149
wait 5
return
;
sub check-primary
cmppix 2 t
{
goto mainloop
wait 5
}
return
;
sub check-secondary
cmppix 3 t
{
goto mainloop
wait 5
}
return
;
sub exec-ls
cmppix 1 f
{
event macro 15 149
wait 5
}
return
praticamente lo script riattiva sempre lightning strike permettendoti di utilizzare anke primary e secondary ability.
La mia domanda è: si potrebbe fare in modo ke la primary ability venga castata in automatico ogni 4 L.S.? Es: Ls+Ls+Ls+Ls+ Primary Ability. La secondary va benissimo anke a mano :P
Grazie mille a tutti coloro ke si interesseranno
;==================================
; Script Name: The Lightning Striker
; Author: ProFF7
; Version: 1.1
; Client Tested with: 5.0.6b
; EUO version tested with: EUOX 1.5 ver 115
; Shard OSI / FS: UO Legends
; Revision Date: 06-12-07
; Public Release:
; Purpose: Automated Use of Lightning Strike without the need of pressing hotkey every time
; you swing your weapon. Using Primary or Secondary weapon special move will stop
; using LS until the special move is executed
;
; Instructions: Make sure you have your Special Move and Lightning Strike icons on the screen,
; and easily viewable and not obscured by other elements. also, make sure
; Lightning Strike is deselected before running this script.
; when ready, hit play, and follow instructions. you SHOULD set your hotkeys
; to activate special moves directly thru UO, not razor or other program,
; for much better performance. please vote if this was useful for you, thanks.
;==================================
gosub setpixel-ls
gosub setpixel-primary
gosub setpixel-secondary
mainloop:
gosub check-primary
gosub check-secondary
gosub check-primary
gosub check-secondary
if #mana > 5
gosub exec-ls
goto mainloop
;
;
sub setpixel-ls
event macro 15 149
display ok move the mouse to Lightning Strike Button. you have 2 seconds
wait 2s
savePix #CURSORX #CURSORY 1
wait 5
return
;
sub setpixel-primary
event macro 35 0
display ok move the mouse to Primary Weapon Move button. you have 2 seconds
wait 2s
savePix #CURSORX #CURSORY 2
wait 5
return
;
sub setpixel-secondary
event macro 36 0
display ok move the mouse to secondary Weapon Move button. you have 2 seconds
wait 2s
savePix #CURSORX #CURSORY 3
wait 5
event macro 15 149
wait 5
return
;
sub check-primary
cmppix 2 t
{
goto mainloop
wait 5
}
return
;
sub check-secondary
cmppix 3 t
{
goto mainloop
wait 5
}
return
;
sub exec-ls
cmppix 1 f
{
event macro 15 149
wait 5
}
return
praticamente lo script riattiva sempre lightning strike permettendoti di utilizzare anke primary e secondary ability.
La mia domanda è: si potrebbe fare in modo ke la primary ability venga castata in automatico ogni 4 L.S.? Es: Ls+Ls+Ls+Ls+ Primary Ability. La secondary va benissimo anke a mano :P
Grazie mille a tutti coloro ke si interesseranno

Commenta