Hello Reeyawn,
Yellow Squigglies?! What does it say when you hover over them?
So far Iâve gotten this with line 4:
if (CurrentTier := TeamMap[PlayerTeam][Teammate]) { set WeaponTier = CurrentTier }
and it seems to be working but, I canât seem to split up line 1 into 2 expressions without it giving me a bunch of errors.
Thanks for that.
I remember seeing this and being able to use the hover text to rework the code.
But it was a much simpler case and Iâve been slacking on my Verse studies.
Wouldnât you need to set the new âCurrent Tierâ before using it in the if statement? (Maybe itâs ok not to)
Would you need another/different âValueâ for the second TeamMap?
Hopefully a Verse-Savvy community member who knows what theyâre talking about will chime in.
Do
Temp := FailableExpression[]
set WeaponTier = Temp
instead of
set WeaponTier = FailableExpression[]
1 Like