Breaking up strings

Is it possible to break a string up into multiple lines for something like a level or item description. I know how to do this using a long yucky method but is there a better way?
I have been reading newfeautes 2001 and I came accross wrap text but I have absolutely no clue on how to use it >.<

___Merged doublepost__________________

omg nevermind I worked it out lol, soz for wasting your time giving you guys something to read.

// NPC made by tricxta
if (playerenters){
  setstring server.test,this is a long winded sentence;
  wraptext 10,1, ,#s(server.test);
  for (i=0;i<tokenscount;i++){
    showtext i,30,30+i,arial,c,#t(i);
  }
}

im sorry :frowning:

Good job :slight_smile:

No need to be sorry, glad you figured it out.

I think Tricxta is learning. Miracles do happen!

For the record as long as you’re only dealing with spaces you could use tokenize str;
You also have one too many params in your wrap text function… wraptext length,delims,text;