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.

UOS Tailoring BOD Filler

can anyone of you greaters programmers help me? i want to make bods but dont have the macro please help me thanks!!
 
I've updated the first post including a fix for the footwear craft issue, if you've made changes to your macro you can fix that issue by replacing:
Code:
     if not @ingump 0x5afbd742 'leather' and not @ingump 0x5afbd742 'studded'
with:
Code:
      // Define BOD material type
      @setalias 'cloth' 'bod'
      if @ingump 0x5afbd742 'leather' or @ingump 0x5afbd742 'studded'
        @unsetalias 'cloth'
      elseif @ingump 0x5afbd742 'boots' and not @ingump 0x5afbd742 'fur boots'
        @unsetalias 'cloth'
      elseif @ingump 0x5afbd742 'shoes' or @ingump 0x5afbd742 'sandals'
        @unsetalias 'cloth'
      endif
      // Craft requirements
      if @findalias 'cloth'
 
Top