Yoko

All sides of Injection
It is currently 2025-12-23 01:03:30

All times are UTC+02:00




Post new topic  Reply to topic  [ 5 posts ] 
Author Message
 Post subject: Хелп бс
PostPosted: 2008-02-10 19:57:32 
Offline

Joined: 2007-11-18 15:35:27
Posts: 24
народ помогите настроить скрипт а то чот не получаетсья мне скинули а чо к чему не обеснили где какие тайпы вставлять хелп плиз вот скрипт







# 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

sub main()
while not UO.Dead()
UO.Exec("waitmenu 'Blacksmithing''Weapons''Weapons''Maces''Maces &''Mace'")
UO.usetype('0x1BEF')
wait (2000)
Uo.Waittargettype( '0x0F5C' )
UO.LDblClick(405,231)
wait(4500)

wend
end sub


Top
   
 Post subject: Re: Хелп бс
PostPosted: 2008-02-10 21:03:08 
Offline

Joined: 2007-04-26 23:35:15
Posts: 220
twis1 wrote:
народ помогите настроить скрипт а то чот не получаетсья мне скинули а чо к чему не обеснили где какие тайпы вставлять хелп плиз вот скрипт

Code:
# 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


Это, скажу по секрету, не часть скрипта ;)
Я лишь рискну предположить что это скрипт для ковки чегото :)
Code:
sub main()
while not UO.Dead()
UO.Exec("waitmenu 'Blacksmithing''Weapons''Weapons''Maces''Maces &''Mace'")
UO.usetype('0x1BEF') ; это наверное молоток :)
wait (2000)
Uo.Waittargettype( '0x0F5C' ) ; возможно инги
UO.LDblClick(405,231) ; предположу что это клик по крафт меню, бред имхо
wait(4500)
wend
end sub


Мой совет, почитай уроки по скриптам, и точно такой же (* по задумке его автора) сможешь написать куда более качественно, если все таки лень - обращайся к автору скрипта :)


Top
   
PostPosted: 2008-02-11 13:08:59 
Offline

Joined: 2007-11-18 15:35:27
Posts: 24
Спасибо уже разобрался)


Top
   
 Post subject: Re: Хелп бс
PostPosted: 2008-02-11 13:23:29 
Offline
Expert!
User avatar

Joined: 2006-02-07 08:51:40
Posts: 1348
Location: г. Старый Оскол
korzh wrote:
twis1 wrote:
народ помогите настроить скрипт а то чот не получаетсья мне скинули а чо к чему не обеснили где какие тайпы вставлять хелп плиз вот скрипт

Это, скажу по секрету, не часть скрипта ;)

Я лишь рискну предположить что это скрипт для ковки чегото :)
Мой совет, почитай уроки по скриптам, и точно такой же (* по задумке его автора) сможешь написать куда более качественно, если все таки лень - обращайся к автору скрипта :)


Эхх молодежь )))
Code:
sub main()
while not UO.Dead()
UO.Exec("waitmenu 'Blacksmithing''Weapons''Weapons''Maces''Maces &''Mace'")
UO.usetype('0x1BEF') ; это наверное молоток :) НЕТ ЭТО ИНГИ
wait (2000)
Uo.Waittargettype( '0x0F5C' ) ; возможно инги ЭТО ТО ЧТО ПОЛУЧИЛОСЬ
UO.LDblClick(405,231) ; предположу что это клик по крафт меню, бред имхо ЭТО КЛИК НА ФОРЖ, ЕЩЕ КАКОЙ БРЕД
wait(4500)
wend
end sub


Top
   
 Post subject:
PostPosted: 2008-02-11 21:22:10 
Offline

Joined: 2007-04-26 23:35:15
Posts: 220
Я в последний раз 3 года назад играл на рпг шарде, забыл уже как там бс качать :roll:

Но суть остается, тыкать кудато через дблклик - извращение :)


Top
   
Display posts from previous:  Sort by  
Post new topic  Reply to topic  [ 5 posts ] 

All times are UTC+02:00


Who is online

Users browsing this forum: No registered users and 5 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Limited