• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

SOLVED Ini file comments supported?

D

Deleted User

Guest
Hello all, this is my first post here.

question:
does gms support comments in ini files when using build-in ini functions?
or am i just using the wrong commentline symbol?

example:
INI:
[buttons]
# keyboard buttons
key_up=38
key_down=40
key_left=37
key_right=39
if i try to use comments, the sections cant be read at all.
 
D

Deleted User

Guest
ok all it needed was extra line after comment, now it works right.

solved.

wrong:
GML:
[buttons]
# keyboard buttons
key_up=38
key_down=40
key_left=37
key_right=39

right:
GML:
[buttons]
# keyboard buttons

key_up=38
key_down=40
key_left=37
key_right=39
 
Top