"enter" key
Is it possible to change what happens when enter is pressed and still bring up the inventory? Like create a sprite on top of the inventory screen when enter is pressed?
Yep. Just create a script called button4 and make it do whatever you like.
This is basically what the enter button normally does. So you can include that bit of code in the button4 script so it still shows the inventory.
This is basically what the enter button normally does. So you can include that bit of code in the button4 script so it still shows the inventory.
void main(void) { show_inventory(); kill_this_task(); }