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
Animal Taming
Moderators: Murderator+, Murderator
if you know id or type of mount you can use UO.UseObject(id);
- using graphic type and color of mount
- using id of mount
- 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);
sorry to drag this up but
for using graphic type and color of mount getting the color is fine how do i find graphic type (its a giant beetle)
unfortuantly using id of mount doesnt work cause when i release the id changes
Dmitrij wrote:if you know id or type of mount you can use UO.UseObject(id);
- using graphic type and color of mountCode: 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)
unfortuantly using id of mount doesnt work cause when i release the id changes