hi,
I have this script that reads from a text file.
The code I use is:
Code:
if ($did == 2) {
      var %ik = $did(8).text
      var %nick = $did(7).seltext
      var %msg = msg $did(8)
      var %act = describe $did(8)
      $read(slaps.txt,t) 
    }
  

In the text file the line looks like this:
Code:
 %msg 3Here's 2 %ik      ....did you need me %nick
 

But when I want to show a popup with multiple lines it shows it as 1 line.
Normaly you use | (see code below)to separate and start the next line but that doesn't work.

Code:
%msg 3Here's 2 %ik          | %msg     did you need me %nick 

Anybody wanna help

Greetzz