@MasterQ32 looks nice BUT please for the sake of Performance, use Constant IDs and NOT strings o.O

Something like:

Code:
//complete nonsense order for demonstration, only
int CInput_Forward = 0;
int CInput_Jump = 1;
...
input_set_buttons(CInput_Forward, key_for_str("w"), key_for_str("s"));
...
var inputValue = input_get(CInput_Forward);



Use strings where you need to display something, otherwhise use IDs tongue


MY Website with news of my projects:
(for example my current
Muliplayer Bomberman,
GenesisPrecompiler for LiteC
and TileMaster, an easy to use Tile editor)
Sparetime-Development