input for 3D programs by sengsjc5th Feb 2004 11:54
|
---|
Summary A replacement for the core command for 3D games Description this function replaces the standard input command. Code ` This code was downloaded from The Game Creators ` It is reproduced here with full permission ` http://www.thegamecreators.com function get_text(message$,cx,cy) repeat until returnkey()=0 CLEAR ENTRY BUFFER repeat set cursor cx,cy print message$+" "+ENTRY$()+"_" sync until returnkey() repeat until returnkey()=0 endfunction ENTRY$() |