View Single Post
  #1  
Old 08-11-2011, 05:35 PM
Kingmen30264
Hill Giant
 
Join Date: Sep 2006
Posts: 112
Default Creating Line Breaks in Quests

On some servers that I have messed around with in the past, I have noticed that when they tell you something, SOME of them are
kind
of
like
this.

Now when I test this on my server, this is the command that I am running:

Code:
Code 1

plugin::Whisper("These are some of the things that I can provide:");
plugin::Whisper("Provision 1");
plugin::Whisper("Provision 2");
Something else that I have tried is this:

Code:
Code 2

plugin::Whisper("These are some of the things that I can provide: <br>Provision 1 <br>Provision 2");
When I try Code 2, it shows up like this:

Code:
NPC NAME whispers, 'These are some of the things that I can provide: <br>Provision 1 <br>Provision 2'
Is there another way of doing this that I am simply missing?

Thanks in adavance
Reply With Quote