Here is the first version of my wordwrap. If the string is too long then it makes it into 2 shorter strings

+ Code Snippettest$="THIS IS A TEST STRING- I AM MAKING IT WAY TOO LONG FOR A REASON"
stringlength#=len(test$)
halfway#=len(test$)/2
if len(test$)>20
cls
print left$(test$,halfway#)
print right$(test$,halfway#+1)
else
print test$
endif
Remember this is a very, very first version of it. When I finish it will be better

For those of you who cant use code windows, heres the code out of it

test$="THIS IS A TEST STRING- I AM MAKING IT WAY TOO LONG FOR A REASON"
stringlength#=len(test$)
halfway#=len(test$)/2
if len(test$)>20
cls
print left$(test$,halfway#)
print right$(test$,halfway#+1)
else
print test$
endif
RPGamer