Innerspace HUD info

bob_the_builder

Well-Known Member
I wanted to add some HUD info into my UI for like distance and target name.

I understand that HUD is Lavish and not ISX but I want to add items from EQ2bot into the HUD.

For instance

${Actor[${KillTarget}].Distance}

Any help on adding that as a HUD?
 

Valerian

ISX Specialist
sure. ${Actor[${Script[eq2bot].VariableScope.KillTarget}].Distance}
or
Code:
hud -add EQ2BotTargDist 200,200 Target Distance: ${Actor[${Script[eq2bot].VariableScope.KillTarget}].Distance}
escaping of data sequences may be required.
 

Kannkor

Ogre
You rock !!!

How about CurrentAction or what spell is being currently cast?
Bob -
${Script[eq2bot].VariableScope.KillTarget}
Replace KillTarget with any eq2bot script level variable.
If you have a global variable, you can simply ${varname} it.
You would just need to find the variable name.
 
Top Bottom