Page 1 of 1

Animal Taming

Posted: 2004-08-29 06:33:41
by akira
i currently have a working taming script except on the shard i play on when you mount then dismount it resets the animal so u can gain by repeating this.

Although to mount and dismount i have to UO.LDblClick(321,194) which has a lot of problems is there any way i can mount or dismount not using click


any ideas will be much thanks

Posted: 2004-08-29 10:44:54
by Dmitrij
if you know id or type of mount you can use UO.UseObject(id);

- using graphic type and color of mount

Code: Select all

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


- using id of mount

Code: Select all

UO.UseObject(mount_id);

Posted: 2004-08-29 17:32:07
by akira
how would i go about finding the id or type of mount?

cheers for help

Posted: 2004-08-29 18:38:25
by Dmitrij
type ",info" in UO and target your mount

Posted: 2004-09-14 12:42:01
by akira
sorry to drag this up but

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

- using graphic type and color of mount

Code: Select all

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



for using graphic type and color of mount getting the color is fine how do i find graphic type (its a giant beetle)

Dmitrij wrote:- using id of mount

Code: Select all

UO.UseObject(mount_id);



unfortuantly using id of mount doesnt work cause when i release the id changes

Posted: 2004-09-14 21:20:35
by Yoko
on absolutely most shards horse you unmounting do not change serial, that's why serial may be in reliable use.

for your shard i think maybe some kind of advanced search in use only.