I need make a Hotkey...
And this hotkey neep has a macro
Bandageself Wait and arm "weapon"
I try:
Bandageself ; Arm "weapon" and don't run.... The target of bandage don't run...
i wanna kwno.
Other:
Bandagesel ; wait (2000) ; arm.
please, help-me
Hotkey .... (easy, i have a question)
Moderators: Murderator+, Murderator
Re: Hotkey .... (easy, i have a question)
Uno wrote:I need make a Hotkey...
And this hotkey neep has a macro
Bandageself Wait and arm "weapon"
I try:
Bandageself ; Arm "weapon" and don't run.... The target of bandage don't run...
i wanna kwno.
Other:
Bandagesel ; wait (2000) ; arm.
please, help-me
1 You can't use 'wait' in hotkeys!
2. Try it:
Code: Select all
bandageslf; arm weapon
OR write simple script:
Code: Select all
sub Bandag()
UO.SetArm('MyWeapon')
UO.Exec('bandageself')
wait(300)
UO.Arm('MyWeapon')
endsub
and record to hotkeys:
Code: Select all
,exec bandag
Re: Hotkey .... (easy, i have a question)
Edred wrote:1 You can't use 'wait' in hotkeys!
And other script.dll functions like UO.Print, UO.Exec, UO.Count, UO.Say, UO.Press, UO.L(R)Click, UOL(R)DClick, UODrag, ... you can't use 2.


Last edited by AGRS on 2004-10-27 18:15:45, edited 1 time in total.
Re: Hotkey .... (easy, i have a question)
AGRS wrote:And other script.dll functions like Print, Exec, Count, Say, Press, L(R)Click, L(R)DClick, Drag, ... you can't use 2.
Exclude 'exec'.

Re: Hotkey .... (easy, i have a question)
Edred wrote:AGRS wrote:And other script.dll functions like Print, Exec, Count, Say, Press, L(R)Click, L(R)DClick, Drag, ... you can't use 2.
Exclude 'exec'.
Fixed.
-
- Posts: 54
- Joined: 2004-05-11 12:27:22
- Contact:
I use
it is the fastest way
Code: Select all
sub bnd()
UO.bandageself()
repeat
wait(50)
until UO.Waiting()==0
UO.Arm('weapon') #(actually i use usetype, but it doesn't matter')
end sub
it is the fastest way
Каждый манчкин в старости мечтает иметь кресло-качалку 

-
- Posts: 54
- Joined: 2004-05-11 12:27:22
- Contact: