I'd like to point out that this add-on has a couple of issues at the bottom of server.cs, particularly:
function serverCmdIGSO_eTardEdit(%Client,%Cmd,%Arg)
{
switch$(%Cmd)
{
case "Add":
if(strStr($Pref::Server::ETardList,%Arg)==-1){$Pref::Server::ETardList = $Pref::Server::ETardList@%Arg;}
case "Remove":
$Pref::Server::ETardList = strReplace($Pref::Server::ETardList,%Arg,"");
case "Reset":
$Pref::Server::ETardList = " u , r , ur , wat , wut , wuts , wit , dat , loel , y ,";
case "Clear":
$Pref::Server::ETardList = "";
}
}
function serverCmdTest(%Victim)
{
messageAll('MsgAdminForce','\c2%1 has been UnAdmined.',"Doopy",%Victim,%Victim.BL_ID,0,0,%Victim.isAdmin,%Victim.isSuperAdmin);
messageAll('msgClientJoin','',"Poopy",%Victim,%Victim.BL_ID,0,0,%Victim.isAdmin,%Victim.isSuperAdmin);
}
Two unprotected functions, one which lets you edit the server's etard filter and the other spams "Doopy has been unadmined".