eqbc drop buff

gladimus

New member
Joined
Jan 3, 2006
Messages
344
Reaction score
0
Points
0
Is there a way through eqbc that i could send a command to drop a buff like invs to my group?

in particular (Group Perfected Invisibility:permanent)
 
Code:
/bcaa //if (${Me.Buff[SomeBuff].ID})) /squelch /notify BuffWindow Buff${Math.Calc[${Me.Buff[SomeBuff].ID}-1].Int} leftmouseup
 
Faled to parse /if command Could not find command to execute

Code:
/bcaa //if (${Me.Buff[Group Perfected Invisibility:Permanent].ID})) /squelch /notify BuffWindow Buff${Math.Calc[${Me.Buff[Group Perfected Invisibility:Permanent].ID}-1].Int} leftmouseup
 
Drop the ":permanent", it's not needed.
 
you can try just doing

Code:
/notify BuffWindow Buff${Math.Calc[${Me.Buff[SomeBuff].ID}-1].Int} leftmouseup
 
That seems to work on the toon calling the command but not the rest.....

Code:
/bcaa //notify BuffWindow Buff${Math.Calc[${Me.Buff[Group Perfected Invisibility].ID}-1].Int} leftmouseup
 
/plugin mq2valdutil
/plugin mq2eqbc
Load EQBC
/bccmd connect (All toons)

/bcaa //vclickoff invisibility (Or name of invis)


Not sure if this is the command you are looking for. But doing this will make all the characters connected to eqbc click off invis.
 
Code:
/noparse /bcaa //nomodkey /notify BuffWindow Buff${Math.Calc[${Me.Buff[Group Perfected Invisibility].ID}-1].Int} leftmouseup
this works