${GV[int,BloodUnion]} Question !

kumpel100

Active Member
${GV[int,ProgressiveFormPhase]} this displays me my current BloodUnion Points, how i can can i type something like :

If ${BloodUnion > 4}
do that....

im new coming over from a other system and want to learn here new things.

ty
 
Last edited:

kumpel100

Active Member
another problem i have now why that didnt work?

if "${Me.BloodUnion}==4"
{
Me.Ability[${Scarlet Ritual III}]:Use
wait 5
}

this should be use the Bloodmage spell Scarlet Ritual III when Blood Unions 4 or greator.

what i doing wrong?

i tested this way:

variable string Spell="Scarlet Ritual III"
if ${Me.BloodUnion}>=4
{
call DebugIt "4 Blood Unions"
Me.Ability[${Spell}]:Use
wait 5
}

the only thing i got to work is the debug message "4 Blood Unions" so there is anything wrong with my command to send my spell i want to use.
 
Last edited:

Amadeus

The Maestro
Staff member
Code:
if (${Me.BloodUnion} >= 4)
{
    Me.Ability["Scarlet Ritual III"]:Use
    wait 5
}
or
Code:
if (${GV[int,ProgressiveFormPhase]} >= 4)
{
    Me.Ability["Scarlet Ritual III"]:Use
    wait 5
}
 

kumpel100

Active Member
Thx Amadeus,

i got it to work this way

variable string Spell="Scarlet Ritual III"
if ${Me.BloodUnion}>=4
{
call DebugIt "4 Blood Unions"
wait 2
Me.Ability[${Spell}]:Use
wait 2
wait 5 ${Me.Ability[${Spell}].IsReady}
}

:)
 
Top Bottom