Functions
When I add a function parameter then use that parameter for an event, it doesn't register.
Something like:
Button Clicked -> Add Paramter 2 (an integer)
if Function.Param(1) == 2 -> do something
it doesn't do something..
However, if I do this:
Button Clicked -> Add Paramter "something" (a string)
if Function.Param(1) == "something" -> do something
it works!
So is this a bug or am i doing something wrong