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.

Uo Steam question bone cutting

How do you set a macro for cutting a bone on Uosteam?

Like scissor then cut bone I can't figure it out, and I am having to log out of Uo steam to log on Razor just to cut bone any help would be greatly appreciated.

There is like 10 type of bone, and I would like to have a script that can cut the bone for me.
 

spok

Sorceror
//
//Script Name: Auto Cut Bones
//Author: Spok
//Requirement: a Scissor
//Instruction: Get some Bones to Cut into your Backpack and Start the Macro!
//
//List of Bones
if listexists 'Auto_Cut_Bones'
removelist 'Auto_Cut_Bones'
endif
//Create List of Bones
createlist 'Auto_Cut_Bones'
pushlist 'Auto_Cut_Bones' 0x1b09
pushlist 'Auto_Cut_Bones' 0x1b0a
pushlist 'Auto_Cut_Bones' 0x1b0b
pushlist 'Auto_Cut_Bones' 0x1b0c
pushlist 'Auto_Cut_Bones' 0x1B0d
pushlist 'Auto_Cut_Bones' 0x1b0e
pushlist 'Auto_Cut_Bones' 0x1b0f
pushlist 'Auto_Cut_Bones' 0x1b10
pushlist 'Auto_Cut_Bones' 0x1b17
pushlist 'Auto_Cut_Bones' 0x1b18
//Loop until no more Bones
for 0 to Auto_Cut_Bones
while @findtype Auto_Cut_Bones[] 'any' 'backpack' 1
//Use Scissor
usetype '0xf9f' 'any' 'backpack'
pause 600
//Target Finding Bone
target! 'found'
pause 600
endwhile
endfor
//Say Finish
sysmsg 'Auto Cut Bones DONE!' 20
 
Top