BuffName

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
GioQveladze
Posts: 15
Joined: Wed Jan 25, 2012 6:40 am

BuffName

#1 Post by GioQveladze »

hello
prompt how to learn buffName For example: Potion: Unbridled Enthusiasm buffName = 506684 and how to learn buffName Hero Potion?
thanks in advance
runnpray
Posts: 12
Joined: Tue Feb 07, 2012 3:43 pm

Re: BuffName

#2 Post by runnpray »

In chat to find buffid :
/run for i=1,100 do local n,_,_,id=UnitDebuff("target",i) if n then DEFAULT_CHAT_FRAME:AddMessage(n.." = "..id) else break end end
Hero potion (or Hero Magic Medicine) buff id is 501337

For the itemid to use I go to the runes database, search the item and take the item number from the url.
From your example:
edit - can't post links...
200277 is the the itemid for Hero's potion.

Then I have been using something like the below

if not player:hasBuff("501337") then
inventory:useItem(200277)
end
GioQveladze
Posts: 15
Joined: Wed Jan 25, 2012 6:40 am

Re: BuffName

#3 Post by GioQveladze »

runnpray wrote:In chat to find buffid :
/run for i=1,100 do local n,_,_,id=UnitDebuff("target",i) if n then DEFAULT_CHAT_FRAME:AddMessage(n.." = "..id) else break end end
where it to write?
runnpray
Posts: 12
Joined: Tue Feb 07, 2012 3:43 pm

Re: BuffName

#4 Post by runnpray »

Hit Enter and type or cut and paste into chat
GioQveladze
Posts: 15
Joined: Wed Jan 25, 2012 6:40 am

Re: BuffName

#5 Post by GioQveladze »

runnpray wrote:Hit Enter and type or cut and paste into chat
I copied in a chat but doesn't work :((
runnpray
Posts: 12
Joined: Tue Feb 07, 2012 3:43 pm

Re: BuffName

#6 Post by runnpray »

ah, I see what I did. I gave you the script for DeBuff's not Buffs try

/run for i=1,100 do local n,_,_,id=UnitBuff("target",i) if n then DEFAULT_CHAT_FRAME:AddMessage(n.." = "..id) else break end end
GioQveladze
Posts: 15
Joined: Wed Jan 25, 2012 6:40 am

Re: BuffName

#7 Post by GioQveladze »

runnpray wrote:ah, I see what I did. I gave you the script for DeBuff's not Buffs try

/run for i=1,100 do local n,_,_,id=UnitBuff("target",i) if n then DEFAULT_CHAT_FRAME:AddMessage(n.." = "..id) else break end end
aa!!
super
thx
Post Reply