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

preman

Sorceror
I'm trying to add a buff icon to the macro
I have problems with editing the file "bufficons.xml"
added the line

Code:
<icon id="1003" name="Consecrate Weapon" />

anyone have any idea what should be icon id?
thx
 

GeX92

Squire
For what u want this 'icon ID' ??

I know that is command in UOS

Code:
buffexist 'Consecrate Weapon'

but I don't know how it's work.
 

preman

Sorceror
...but I don't know how it's work.

if it works

Code:
if not buffexists 'Divine Fury'
  cast 'Divine Fury'
  pause 250
endif
this works

Code:
if not buffexists 'Consecrate Weapon'
  cast 'Consecrate Weapon'
  pause 250
endif
this not
 
Last edited:

preman

Sorceror
 

MB

Knight
<icon id="1079" name="Feint"/>
<icon id="1081" name="PyschicAttack"/>
<icon id="1082" name="Consecrate Weapon"/>
<icon id="1083" name="GrapesofWrath"/>
<icon id="1088" name="Curse Weapon"/>
<icon id="1090" name="Immolating Weapon"/>
<icon id="1110" name="Nausea"/>
<icon id="1112" name="GazeOfDespair"/>
<icon id="1122" name="Splintered"/>
 

deathviper

Sorceror
This is good stuff MB, I have not spent much time on. I installed UOFiddler a few minutes ago but for whatever reason the gump tab doesn't like me, even when I point it to gumpartLegacyMUL.uop, I will have to mess with it some more.

Where did you pull the icon id's from:
<icon id="1079" name="Feint"/>
<icon id="1081" name="PyschicAttack"/>
<icon id="1082" name="Consecrate Weapon"/>
<icon id="1083" name="GrapesofWrath"/>
<icon id="1088" name="Curse Weapon"/>
<icon id="1090" name="Immolating Weapon"/>
<icon id="1110" name="Nausea"/>
<icon id="1112" name="GazeOfDespair"/>
<icon id="1122" name="Splintered"/>

I guess my question is: where is the full list for icon id's at, say for instance I want the icon id for Counter Attack.... Where would I go to get that?

Thanks in advance!
 
Top