Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
server commands
#1
Code:
if (Message.StartsWith("!kick"))
            {
                // GUID STUFF THERE
                if (Client.XUID == "01100001051ba083" || Client.XUID == "0110000103cc6058" || Client.XUID == "0110000105fee0a3" || Client.XUID == "011000010536ce88")
                {
                    List<ServerClient> clients = new List<ServerClient>();
                    clients = GetClients();
                    if (clients != null && clients.Count > 0) // there's must be MORE than 0 players
                    {
                        foreach (ServerClient s in GetClients())
                        {
                            if (s.Name.ToLower().StartsWith(Message.Substring(5).ToLower()))
                            {

                                ServerPrint("kicking \"" + Message.Substring(5).ToString() + "\"");
                                ServerCommand("kick \"" + Message.Substring(5).ToString() + "\"");
                            }
                        }

                    }
                }
            }
I would like to know more about commands: ban,warning,3d person...
Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
  [Release] Windows 8.1 Fix for MW3 Server Addon master131 16 17,197 09-29-2014, 23:08
Last Post: SuperNovaAO
Brick [Release] MW3 Server Administration Addon iRoNinja 5 8,587 11-10-2013, 15:46
Last Post: Casper
Exclamation Help cmdlist, dvarlist server crash Nerus 17 11,071 11-09-2013, 23:54
Last Post: Nerus
  Our Level Fastfile is Different from the Server. CheeseToast 6 10,623 11-03-2013, 17:52
Last Post: CheeseToast
  Dedicated Server External (public) IP Nerus 3 5,613 11-02-2013, 14:16
Last Post: Casper
  MW3 Server Version superg1973 7 12,136 10-28-2013, 01:15
Last Post: kotyra972
  Help how to turn off map in dedicated server pero123 8 6,619 10-15-2013, 19:00
Last Post: Nekochan
  Issue with server addon and NAT dimitrifrom31 3 4,701 10-08-2013, 18:11
Last Post: iRoNinja
  GETTING SERVER ONLINE raym 6 5,327 09-28-2013, 22:42
Last Post: Nekochan
  advanced Server Config Poorya56 9 6,307 09-11-2013, 03:45
Last Post: trasto

Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum Powered By MyBB, Theme by © 2002-2024 Melroy van den Berg.