I just found a bug that was driving me crazy!
I setup an INI file for saving purposes and each sprite has its own item which is a string.
So it would look like
[GROUP]
Sprite1=Sprite1.x|Sprite1.Y|Sprite.Value('A')|Sprite.Value('B')
And the problem is when I load and use GetToken(INI.ItemString("Group", "Sprite1"), 3, "|") to load the 3 token into a NUMBER variable of the sprite, Construct makes the variable to a STRING variable, which causes all sorts of problems when adding and such.
I'll add 20 to Variable A which is already at 100, and instead of it being 120, it is 10020.
I thought I'd point it out.
Is this a bug?