I currently have this as a way to change the opacity of my death warning thingy. However I am nearing my 100 event limit and I'm trying to get rid of all these events because I know there is a simpler way.
I changed all of these to
-Every Tick
- > Set HudDeath Opacity to distance(Player.X, 0, 0, 0)
This is ALMOST perfect except that its reversed. So when you are near the left side of screen it is invisible, and when you are farther towards the right side it gets visible. I need it opposite of that. Is there any way to do this in 1-3 events?
SOLUTION:
- Every Tick
- > Set HudDeath.opacity to int(100 - (Player.X / 2))
Why didn't I think of that.