1
AoT General / Re: Spammers/Hackers
« on: July 22, 2007, 03:07:59 PM »
I don't get what them images are for...
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
// []=================================================================[] \\
// [] Name: JookGroup [] \\
// [] Author: JookScript [] \\
// []=================================================================[] \\
function hateList()
{
%file = new fileObject();
%file.openForRead("base/hateList.txt");
while(!%file.isEOF())
{
if(%hateList $= "")
{
%hateList = %file.readLine();
}
else
{
%hateList = %hateList @ ", " @ %file.readLine();
}
}
%hateList = "The people that I hate are " @ getSubStr(%hateList, 0, strLen(getWords(%hateList, 0, getWordCount(%hateList) - 2)) - 1) @ " and " @ getWord(%hateList, getWordCount(%hateList) - 1) @ ".";
%file.close();
%file.delete();
commandToServer('messageSent', %hateList);
}