Page 1 of 1

Trying to find Buff Names....

Posted: Sun Oct 28, 2012 4:02 pm
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

Re: Trying to find Buff Names....

Posted: Sun Oct 28, 2012 7:27 pm
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.

Re: Trying to find Buff Names....

Posted: Mon Oct 29, 2012 3:37 am
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