UOGamers Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

  • To obtain new Razor updates, please reinstall Razor from our new website.

AssistUO Equiping item by type

Kraz

AssistUO Developer
Use object inspector on that weapon type while equipped to grab graphic and layer value and replace on that macro, do not forget to remove the parentheses.
Code:
// Check if layer slot is empty and search for weapon type on backpack
if not @findlayer 'self' (layer) and @findtype (graphic) 'any' 'backpack'
 // Find type will return an alias called 'found', pointing to a specific object serial
 equipitem 'found' (layer)
endif
http://www.runuo.com/products/assistuo/doc/statements/find-layer
http://www.runuo.com/products/assistuo/doc/statements/find-type
 

eman333

Sorceror
One more, how would I go about making a macro to target the last object?
For eg. Use knife, then target the last object
 
Top