Author Topic: The Ban Thread  (Read 11252 times)

Pretty sure it was Solar, but he does stuff like that. Could have been Trigun or VH though.
I know all of 'em.
It's VH.
i r smart

I has banned for REDUCING Lag, yeah you heard it REDUCING lag!

I got perma-banned from Lex's challenge server. I said AFK, then I cntrl k'd I came back less then 5 minutes later and I was Perma-banned
Reason: disobedient pandatard

I would ask him to be un-banned but he rarely goes on the forums and I never see him in game.

Pretty sure it was Solar, but he does stuff like that. Could have been Trigun or VH though.
It was VH, he said that you insulted him on his own server.

What. I never said anything, and if I did it was directed at Solar.

On my server, some people tried to abuse the fact that I made you gain money by building and spammed bricks. Of course, soon they got the message that while I'm at the keyboard, I can tell they're spamming, so they waited until I was 'afk' to do it. I watched from server console and saw it. My echo-onPlant script.
Code: [Select]
function fxDTSbrickdata::onPlant(%data,%brick)
{
schedule(100,0,cashbrickCheck,%brick);
Parent::onPlant(%data,%brick);
}
function cashbrickCheck(%brick)
{
%client = %brick.getgroup().client;
echo(%client.name SPC "built and now has" SPC %client.cash);
}
EDIT: I slapped it together, and I called a nonexistant %client, let me use part of the real script, minus the other junk in it. I'm too lazy to see if getgroup().client works onPlant.

Needless to say, the offenders were first warned, stripped of their cash (by the cookie monster), and banned.
Code: [Select]
function servercmdEatCash(%client,%target)
{
        if(%client.isSuperAdmin)
        {
for(%i=0;%i<ClientGroup.getCount();%i++){
%cl = ClientGroup.getObject(%i);
  if(strstr(strlwr(%cl.name),strlwr(%target))!=-1){
%found = %cl;
messageAll("","\c0Oh noes! A stray \c1Cookie Monster\c0 has eaten all of \c6"@ %found.name @"\'s\c0 cash!");
%found.cash = 0;
}}}
}
« Last Edit: December 14, 2007, 10:47:34 AM by Dilt »

Perma banned from Jeremyjames' server for throwing snowballs at people in a snowball fight mini. Apparently he thinks that even holding a snowball is cheating.

I've never been banned in Retail.

Probably because I never play, and when I do I don't talk.

I'm sort of leaning towards it being Solar, we do this kind of thing all the time to each other. But it sucked because they didn't unban me and I was seriously bored at the time and there were no good servers up D:
It was VH  :cookieMonster:

I was on the eota build competition.  I said Ima firin mah lazer and Adio perma banned me for it.

Adio perma banned me from his server I think :D

I got perma banned from Traders server in the middle of use having a normal conversation, for "you are an idiot"

Dilt, instead of looping through all the clients do: %cl = findClientByName("part of name");

I was on the eota build competition.  I said Ima firin mah lazer and Adio perma banned me for it.

Honestly, I'd do the same.

Dilt, instead of looping through all the clients do: %cl = findClientByName("part of name");
findClientByName loops through them all anyway. The only difference is really preference/code length/readability, and I prefer to do the loop myself, in case I need to throw an exception or such.

findClientByName is a custom function?

EDIT: Nevermind, the file that contains the function is exec'd when you start a server.