Search found 14 matches

by Dmitrij
2004-10-18 18:59:34
Forum: Help
Topic: Text Console
Replies: 2
Views: 1156

i need some solution: getting position of image on the gump form...
you said me, that it is not implemented yet
im finding some way to do this :)
(,infogump prints information into Text Console... if i can get data from Text Console, i'll get positions of images)
by Dmitrij
2004-10-18 17:29:12
Forum: Help
Topic: Text Console
Replies: 2
Views: 1156

Text Console

Exists some procedure to get text from Text Console, eg. as UO.Journal(0) returns last row of journal?

OR: Its possible to save a text in Text Console into the file?
by Dmitrij
2004-08-29 18:38:25
Forum: Help
Topic: Animal Taming
Replies: 5
Views: 2118

type ",info" in UO and target your mount
by Dmitrij
2004-08-29 10:51:59
Forum: Scripting Ore
Topic: any one PLZ help me
Replies: 2
Views: 1323

you can type password through UO.Say("password") because immediately after disconnect is cursor in password input field...
by Dmitrij
2004-08-29 10:44:54
Forum: Help
Topic: Animal Taming
Replies: 5
Views: 2118

if you know id or type of mount you can use UO.UseObject(id) ;

- using graphic type and color of mount

UO.FindType(mount_type, mount_color, "ground");
if (UO.FindCount()) then
UO.UseObject("finditem");
endif

- using id of mount

UO.UseObject ...
by Dmitrij
2004-08-27 23:46:31
Forum: Help
Topic: Number transfers??
Replies: 1
Views: 1285

Number transfers??

I need in my script this transfers...

hexadecimal -> decimal system
decimal -> hexadecimal system

exists in inject some way how do this??
by Dmitrij
2004-08-22 23:38:59
Forum: Help
Topic: LastGump
Replies: 1
Views: 1224

LastGump

I dont find all parametrs of lastgump command anywhere
I find only...
"text"
"button"

but I need to get description of "all commands" (item in ,infogump)

but i dont detect not even entryes or checks...

Please say me anything else about lastgump command
by Dmitrij
2004-08-20 22:41:48
Forum: Help
Topic: Pause in hotkeys
Replies: 5
Views: 1897

UO Macro Options: "Ctrl + Z" -> Say: ",exec mysub"
by Dmitrij
2004-08-20 20:15:52
Forum: Help
Topic: Pause in hotkeys
Replies: 5
Views: 1897

Code: Select all

UO.Cast("Explosion","lasttarget");
Wait(1000); 1000 - time in miliseconds...
UO.Equipt("Rhand","0x1401");


Try this...
by Dmitrij
2004-08-20 12:30:19
Forum: Help
Topic: Can you help me whit a macro for Teleport?
Replies: 3
Views: 1739

If you want to set relative position of any object:

Code: Select all

UO.WaitTargetTile("1447",Str(UO.GetX("object_id")),Str(UO.GetY("object_id")),Str(UO.GetZ("object_id")))
by Dmitrij
2004-08-19 19:21:14
Forum: Help
Topic: Trade Menu with Player
Replies: 15
Views: 5109

I dont think what is bad in this code:

(transfer data from backpack ("finditem") into left trade container)

var tcl = UO.TradeContainer("left") # true
UO.MoveItem("finditem","-1",tcl) # bad

Finditem is always taken from backpack and returns into it...
by Dmitrij
2004-08-18 16:30:33
Forum: General
Topic: FindType()
Replies: 2
Views: 2072

thanks, this is result of my reserch:

sub FindSequence(type,color,container)
UO.FindType(type,color,container);
if (UO.FindCount() > 0) then
UO.Ignore("finditem");
return UO.GetSerial("finditem");
else
UO.IgnoreReset&#40 ...
by Dmitrij
2004-08-17 21:46:19
Forum: General
Topic: FindType()
Replies: 2
Views: 2072

FindType()

exists some way to get every object which i found with findtype??

(findtype returns first (or last) object of this type, but i need get every object in sequence)
by Dmitrij
2004-08-13 01:05:03
Forum: General
Topic: How get gump position??
Replies: 1
Views: 1653

How get gump position??

I tried to call a gump ,infogump to get its position (X,Y) ...
But it returns X: 0, Y:0
(it's not suprised me, when GetX and GetY returns X: 0, Y: 0 too)

But I need get gump position... it will be a succes for me .)

(this gump is big gray table with some checks, images and buttons... when i ...