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.

How can i know the gump serial on uo steam??

Some quick modifications to this script would yield you a few extra mil in the long run.

The changes have been out long enough that you could just remove this section, as recipes really have no value anymore.

Code:
    // Recipes
    while @findtype 0x2831 0 'trash'
    for 0 to 'Recipes'
      if @property Recipes[] 'found'
      @moveitem! 'found' 'Reward Box' 80
      pause 1000
      break
      endif
    endfor
    @ignoreobject 'found'
    endwhile


and in this section(I added the line)
Code:
// Talismans
    for 0 to 'Talismans'
    while @findtype Talismans[] 0 'trash'
      if @property 'Exceptional Bonus' 'found' >= 25
      for 0 to 'Skills'
        if @property Skills[] 'found' >= 25
        @moveitem! 'found' 'Reward Box' 160
        pause 1000
        break
        endif
      endfor
      endif
////////////////PASTE HERE//////////////////
      @ignoreobject 'found'
    endwhile
    endfor

Something as simple as this will keep all slayers and maximum intensity killer and protection talismans. You could used nested loops like he used for the bonus/ex bonus to have it look specific combinations like yamandon killer + protection or mage slayer + lich lord killer/protection.


Code:
            if @property 'Slayer' 'found'
              @moveitem! 'found' 'Reward Box' 80
            endif
           if @property 'Killer' 'found' >= 100
              @moveitem! 'found' 'Reward Box' 80
            endif
            if @property 'Protection' 'found' >= 60
              @moveitem! 'found' 'Reward Box' 80
          endif
          pause 1000
 
He posted it on other UO related forums, not sure if its the demise ready one or not because i havent compared the gumpids. You could google it and get atleast a version of it, it takes less than 20 seconds to alter the script to work for demise.
 

Brett Thomas

Wanderer
Has anyone found the ID gump fix script for this? It would be nice for a link or a post or something for those who aren't too keen on forums. Not everyone uses forums so please put that into consideration for those who need help finding this script in its updated ID gump fixed version. Thanks in advance.
 
Top