Move Curs...

Ask for help

Moderators: Murderator+, Murderator

Post Reply
Knight1106
Posts: 64
Joined: 2005-09-08 18:38:12

Move Curs...

Post by Knight1106 »

Does injection have a command to move the cursor to any coordinate around the screen ?

Are there others click commands besides lclick() and rclick() ?

thanks for your help.
Millerbeer
Posts: 247
Joined: 2008-09-12 05:07:34

Post by Millerbeer »

# You control Ultima Online client through the global class UO
# It has methods:
# UO.Print("string") - print message to the client window.
# UO.Exec("command") - execute a command. For the list of
# commands consult documentation.
# UO.Count("type",["color"]) - returns count of items of type
# UO.Say("something") - make you character say something.
# UO.Press(KeyCode[,Count[,Delay]]) - Simulate keypress.
# KeyCode - Virtual key code.
# Count - Optional. Number of keypresses.
# Delay - Time in msec to wait between keypresses.
# UO.LClick(X,Y) - Simulate left button click.
# UO.RClick(X,Y) - Simulate right button click.
# UO.LDblClick(X,Y) - Simulate left button double click.
# UO.RDblClick(X,Y) - Simulate right button double click.
# UO.Drag(X1,Y1, X2,Y2 [,amount]) - drag something.
# If you don't specify amount the whole stock is dragged.
# You can use "Insert key code" button to get virtual key code.
# And use "Pick coord" to find mouse coordinates on screen.
# Don't forget to call function Wait(time in msec) after
# using skill/spell to wait until it finishes!
# List of read-only properties:
# UO.Life, UO.Mana, UO.Stamina, UO.STR, UO.INT, UO.DEX,
# UO.Weight, UO.Armor, UO.Gold, UO.BM, UO.BP, UO.GA, UO.GS,
# UO.MR, UO.NS, UO.SA, UO.SS, UO.VA, UO.EN, UO.WH, UO.FD,
# UO.BR, UO.H, UO.C, UO.M, UO.L, UO.B, UO.AR, UO.BT
# Save script as autoload.scp to load automatically every start.
Knight1106
Posts: 64
Joined: 2005-09-08 18:38:12

Post by Knight1106 »

so that s mean there is no injection command that moves the cursor ?
Kynep
Expert!
Posts: 1348
Joined: 2006-02-07 08:51:40
Location: г. Старый Оскол
Contact:

Post by Kynep »

Knight1106 wrote:so that s mean there is no injection command that moves the cursor ?

Yes.
Post Reply