mob/verb/Subscriber_List_Update()
var/http = world.Export("http://www.gohangames.webcindario.com/subscribers.txt")
if(!http)
usr << "Failed to connect."
return
var/A = http["CONTENT"]
if(A)
A=html_encode(file2text(A))
var/key=copytext(A,1,findtext(A,"/"))
var/date=copytext(A,findtext(A,"/")+1)
for(var/client/M)
if(findtext(A,M.key))
usr<<"You are Subscribed to Gohan Games"
usr<<"Your sub will expire [date]"
Problem description: When it Says You are Subscribed Blablabla, After That Appears the Other Players Keys
That is only part of the problem though, like I mentioned above you need to do some kind of recursive search over the file to actually find more than one value in the file.