Reply to Re: Changing what the enter key does
If you don't have an account, just leave the password field blank.
Make a script called "button4.c" and enter something like:
This will only show the inventory when &story isn't 6.
void main(void)
{
if(&story == 6)
{
say("no inventory for you!",1);
kill_this_task();
}
show_inventory();
kill_this_task();
}
This will only show the inventory when &story isn't 6.






