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.

Script to help mining with Prospector tools and Garg axes

JlM

Wanderer
I made a script that if im at home will deposit ore or if not in range take ore from my bag and put in beetle.

I cant seem to make it drop normal ore to ground.

@setalias 'MiningDropoff' 0x40968c37
@setalias 'Mount' 0xe126
//Deposit Ore at Home
if @inrange 'MiningDropoff' 2
useobject 'self'
pause 700
while counttype 0x19b7 'any' 'Mount' > 0
movetype 0x19b7 'Mount' 'MiningDropoff' (0 0 0) 'any'
endwhile
while counttype 0x19b8 'any' 'Mount' > 0
movetype 0x19b8 'Mount' 'MiningDropoff' (0 0 0) 'any'
endwhile
while counttype 0x19b9 'any' 'Mount' > 0
movetype 0x19b9 'Mount' 'MiningDropoff' (0 0 0) 'any'
endwhile
while counttype 0x19ba 'any' 'Mount' > 0
movetype 0x19ba 'Mount' 'MiningDropoff' (0 0 0) 'any'
endwhile
while counttype 0x1bf2 'any' 'backpack' > 0
movetype 0x1bf2 'backpack' 'MiningDropoff' (0 0 0) 'any'
endwhile
pause 700
useobject 'Mount'
endif
//Transfer Ore to beetle or to ground
if not @inrange 'MiningDropoff' 2
useobject 'self'
pause 700
while counttype 0x19b8 'any' 'backpack' > 0
movetype 0x19b8 'backpack' 'Mount' (0 0 0) '2219' 'any'
pause 700
endwhile
endif
 

JlM

Wanderer
I basically have a hotkeys for:

prospector 1 tile north
garg 1 tile north
deposit to beetle or to house depending on where i am
recall to house

I cant auto kill the valorite elems so this helps me with the manual part.
 
Last edited:
Top