ItsDeltin / Overwatch-Script-To-Workshop

Converts scripts to Overwatch workshops.
209 stars 26 forks source link

2.0 Preview `Create Progress Bar HUD Text` appears to not compile accurately, missing param #203

Closed TimeBomb closed 3 years ago

TimeBomb commented 3 years ago

CreateProgressBarHudText(50, "Experience", Location.Left, 2, Color.Green, Color.White, ProgressBarEvaluation.VisibleToValuesAndColor); compiles to:

Create Progress Bar HUD Text(Event Player, 50, Player Variable(Event Player, EXPToLevelUp)), Custom String("Experience", Null, Null, Null), Left, 2, Color(Green), Color(White), Visible To Values And Color)

which errors out when attempting to import. It looks like it's missing a parameter at the end. It should be:

Create Progress Bar HUD Text(Event Player, 50, Player Variable(Event Player, EXPToLevelUp)), Custom String("Experience", Null, Null, Null), Left, 2, Color(Green), Color(White), Visible To Values And Color, Default Visibility)