K kumpel100 Active Member Dec 9, 2007 #1 ${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: Dec 9, 2007
${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
K kumpel100 Active Member Dec 9, 2007 #2 after hrs of reading and testing i found what im looking for: if "${Me.BloodUnion}==5" ty
K kumpel100 Active Member Dec 9, 2007 #3 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: Dec 9, 2007
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.
Amadeus The Maestro Staff member Dec 9, 2007 #4 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 }
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 }
K kumpel100 Active Member Dec 9, 2007 #5 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} }
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} }