So I was having this issue for like a week until I eventually figured it out myself because I found no help for it online, so I decided to put this here just in case if someone else has the same issue as me.
So if you try to send a number variable in a chat message like this:
Then it just ignores the number and sends everything else, without a single error or warning. Turns out all you have to do is convert it into an expression
like the following and it works as you would expect:
I hope this little bit of info helps others because it sure would have helped me.
So if you try to send a number variable in a chat message like this:
Code:
send "Current lives remaining: {lives}"
# {lives} is a number type
like the following and it works as you would expect:
Code:
send "Current lives remaining: %{lives}%"
I hope this little bit of info helps others because it sure would have helped me.