Animal Taming

Ask for help

Moderators: Murderator+, Murderator

Post Reply
akira
Posts: 3
Joined: 2004-08-29 06:29:24

Animal Taming

Post 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
Dmitrij
Posts: 14
Joined: 2004-08-13 00:00:02

Post 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);
akira
Posts: 3
Joined: 2004-08-29 06:29:24

Post by akira »

how would i go about finding the id or type of mount?

cheers for help
Dmitrij
Posts: 14
Joined: 2004-08-13 00:00:02

Post by Dmitrij »

type ",info" in UO and target your mount
akira
Posts: 3
Joined: 2004-08-29 06:29:24

Post 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
Yoko
Site Admin
Posts: 1964
Joined: 2004-04-03 16:49:38
Contact:

Post 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.
Post Reply