Is there a easier way to make this work? I am trying to write a file on load
that writes up to 15 words into a text with there ID #.

I have to write this code like this for it to work

Code:
 
alias first {
  /write text.lst word1
  /write text.lst 1
  /write text.lst word2
  /write text.lst 2
  /write text.lst word3
  /write text.lst 3
  /write text.lst word4
  /write text.lst 4
  /write text.lst word5
  /write  5
}
 


it shows up in the text like this in the text

Code:
 
  word1
  1
  word2
  2
  word3
  3
  word4
  4
  word5
  5
 


When I use this code it writes the file but the file will not load in the hash table

Code:
 
alias first {
  //write text.lst $+(word1,$chr(13),1,$chr(13),word2:,$chr(13),2,$chr(13),word3,$chr(13),3,$chr(13),word4,$chr(13),4,$chr(13),word5,$chr(13),5,$chr(13))
}
 


This is what shows up in the text file

Code:
 
word11word22word33word44word55
 


This Chatitor  is $chr(13) or the hexadecimal numbers of cariage return

I am not shure why it will not load into the hash table.