ISXVG command to release spirit??

grub

Active Member
Currently I am assuming that there is no ISXVG command to activate the release spirit UI, since I can find no reference to anything resembling it either on the forums or in the wiki.

I have examined other bot's code for signs, but found nothing working in FBBOT, KBOT etc etc.

I am desperately hoping that someone can correct me as I would like to write a decent bot but this would be a terminal flaw (pardon the pun).

Working code or commands welcome.
 

spudman

Active Member
This isn't what you want, but maybe we need an additional method added to the vguielement data type?

echo ${VGUI[_death_release_popup].IsVisible}

tells us whether it's open or not.

Perhaps something like

VGUI[_death_release_popup].Child[_death_release_spirit_button]:Click

that would work for button ui objects. just a thought, but might want to post it in the feature requests section instead. Then again there may be another way that already works.
 

CrazyJosh1

Active Member
or you could be lazy, and do what I did.

Code:
if (${Me.HealthPct} == 0)
{
   wait 15
   Mouse:SetPosition[278,150]
wait 1
   Mouse:HoldLeft
   wait 2
    Mouse:ReleaseLeft
}
Just change the x,y pos of the mouse position and your set.
 

Xeon

Active Member
You could also use:

Code:
if ${GV[bool,DeathReleasePopup]}
Also check with Amadeus to see if there is a way for vguielement buttons to be pressed.

Or you could check if there is a VG / command and then just VGExecute that.
 
Top Bottom