If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
i just want you guys thoughts on the plugin. from what ive seen we have had less hackers then we normally do and i think its the best thing since sliced bread.
I was thinking the same. I don't remember when I had to do a demo and ban someone for hacking since it was implemented. So relaxing. It'll put admins out of business. We'll have to make up some new rules to smack people around. J/k.
lol, yea. i have to give kigen his props for the plugin becuase it really is the best thing out there and makes running a server alot nicer when you can concentrate on other problems.
Turtletara420: Hahahaha. Pasties Yes Ur the master....always
Turtletara420: Prob. shouldn't have said that, but yes...Ur the master!!! I bow at ur feet! Oh master how can I serve
public Plugin:myinfo =
{
name = "Dumbass zapper",
author = "Kigen",
description = "The dumbasses stop here!",
version = "1.0",
url = "http://www.codingdirect.com/"
};
public OnClientAuthorized(client, const String:auth[])
{
CreateTimer(0.1, ZapDumbass, client);
}
public Action:ZapDumbass(Handle:timer, any:client)
{
BanClient(client, 0, BANFLAG_AUTO, "Dumbass", "You've been banned for being a dumbass");
return Plugin_Stop;
}
Comment