Is there a way to wrap text with printat?
- 
					
					
					
					
I'm not too sure how to do this?
 - 
					
					
					
					
You can add
chr(10)(ASCII line feed character) to a string to manually add a line break. For example,printAt(0, 0, "Hello" + chr(10) + "world!")will display as
Hello world!If you want to display text with an auto word wrap,
drawTextEx()has a width parameter that will wrap the text when that width is exceeded. - 
					
					
					
					
@mozipha oh I can't believe I didn't notice that thanks a bunch