Trying to find Buff Names....

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
AngelDrago
Posts: 133
Joined: Fri May 06, 2011 10:39 am

Trying to find Buff Names....

#1 Post by AngelDrago »

Hello everyone maybe i mist it but i can not find the Buff names of the following Items Big Angel's Sigh and the one day experience potions and tb potions....

any advice on where i should be looking would be appriciated.thx
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Trying to find Buff Names....

#2 Post by lisa »

There are some in game functions you can use to print the buff names to screen or you can use MM to print them aswell, I would use MM but that is just me.

if you start MM with

Code: Select all

rom/bot path:commandline
it will start MM with a command prompt that you can use, when you have the buffs type this.

Code: Select all

player:update() table.print(player.Buffs)
it should print on MM all data for any buffs/debuffs you currently have.
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
User avatar
gloover
Posts: 304
Joined: Wed Jul 07, 2010 4:31 am

Re: Trying to find Buff Names....

#3 Post by gloover »

Or you can simply type this in game chat:

Code: Select all

/script i=1 while UnitBuff( "player", i) ~= nil do name, __, __, ID = UnitBuff( "player", i) SendSystemChat(name.." "..ID) i = i + 1 end
Post Reply