Request: How to razor macro commod deed in another container.

Hi there, I'm trying to make a razor macro that will take a resource and a commod deed and put them both in a commod deed box, then use the blank commod deed on the resource in that commod deed box.

The trouble is I can't get razor to double click on the new deed, it won't recorgnize a dtype that isn't on my person.

Can anyone lend their expertise?
Or perhaps a recommendation of another program that won't get me in trouble?
 

kdivers

Neophyte
UOSteam would be ideal.

Code:
if findtype 'artidofcommdeed' 'colorofcommdeed' 'source'
  useobject 'found'
  autotargettype 'artid' 'color' 'source'
endif

just gotta change the artid, color, thing, and source.

I'm assuming you are doing a macro to deed up regs and stuff from your house?

if so, it would just be something like:

Code:
organizer 'regs' 'regbox' 'commbox'
while organizing
  pause 100
endwhile
if findtype 'artidofcommdeed' 'colorofcommdeed' 'source'
  autotargettype 'regartid' 0x0 'commbox'
  useobject 'found'
  moveitem 'found' 'boxoffullcommdeeds'
endif

Of course, you'd have to change all the aliases and eveyrthing, probably use the serials, but its a pretty straight forward macro
 
Last edited by a moderator:
Top