Are the names in a long line seperated by spaces? If so, you could do this to store them line by line in a .txt file, or better yet use a hash table http://en.wikichip.org/wiki/mirc/hash_tables
Code:
var %i 1
while ($gettok(%data,%i,32)) {
write subscribers.txt $gettok(%data,%i,32)
inc %i 
}

Last edited by Sakana; 27/05/15 06:32 AM.