ive made a text based game with included battle system. i need a way to put the text into a box to make room for images that i draw. as well as a display for battle. will post the key soon
to move text put LOCATE X,Y underneath the text (XY are variables eg if you want it near the bottom do 0,200 and this will place it in the bottom left corner of tne screen.
similarly use GBOX and manipulate the variables until its the proper size for your text. use the help function in the code editor to learn what the variables do
Here's a tip: LOCATE only works in the console screen. In your case you might want to look up GPUTCHR which works on the graphics screen and doesn't limit text placement to the small grid the console screen has.