home *** CD-ROM | disk | FTP | other *** search
/ Gamblexx 2002 May / gamblexx_05_2002.iso / demos / serioussamsedemo.exe / Disk1 / Scripts / Commands / rkick.ini < prev    next >
Encoding:
Text File  |  2001-08-27  |  450 b   |  14 lines

  1. if ("%1"=="%"+"1") {
  2.   Echo("Usage: kick <playername> [<reason>]\n");
  3.   Echo("  you can use wildcards in <playername>\n");
  4.   Echo("Examples:  \n");
  5.   Echo("  kick WiseGuy\n");
  6.   Echo("  kick WiseGuy \"bye bye..\"\n");
  7.   Echo("  kick *\n");
  8.   Echo("  kick [ABC]* \"your team is not welcome here!\"\n");
  9. } else if("%2"=="%"+"2") { 
  10.   Admin("KickByName(\"%1\", \"no reason given\");"); 
  11. } else { 
  12.   Admin("KickByName(\"%1\", \"%2\");"); 
  13. }
  14.