Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Release Bad Names Kick Plugin v3.0
#41
(04-24-2012, 19:02)OzonE Wrote: LOL . =))))
if you have access to your VPS , erase your name and XUID from permanent.ban file in main folder.
i updated the first post , good job. OMA

Tried that didn't work lol.. just deleted my whole MW3 server folder besides my plugins, addon, and admin folder >_> Big Grin Heart
Reply

#42
(04-24-2012, 19:51)DidUknowiPwn Wrote:
(04-24-2012, 19:02)OzonE Wrote: LOL . =))))
if you have access to your VPS , erase your name and XUID from permanent.ban file in main folder.
i updated the first post , good job. OMA

Tried that didn't work lol.. just deleted my whole MW3 server folder besides my plugins, addon, and admin folder >_> Big Grin Heart

maybe you messed it up , should work .. 0_o
Reply

#43
Oh well deleted my server so whatever will reinstall it soon..
Erm.. another problem XP people keep getting kicked/banned XP remember how you said people keep getting kicked? ya that's happening now..
wonder what it could be though.. it looks fine but it just kicks/bans anyone who joins
Reply

#44
kicking everybody again?
Reply

#45
Apparently there's still a bug. With the "working" version, it now bans everyone joining the server. Smile
[Image: tanksignature.jpg]
Reply

#46
Or kicking, which ever plugin you decided to use.. that's why I was still banned on my server even after deleting the permanent_exban file.. could it be from the string[] cn = Client.Name.Split(' '); ?
Reply

#47
no idea Fuck yea!
Reply

#48
(04-24-2012, 22:13)OzonE Wrote: no idea Fuck yea!

Damn man this is annoying >_> if it's kicking everyone then that means the code doesn't lead to the text file... More testing to do! Remove the DL link Smile
Reply

#49
Did a little more digging this is the command with that reason you wanted to I believe... got it from bonemind's plugin under CommandClass" ServerCommand("dropclient " + clientResult.ClientNum + " \"" + reason + "\"");"
Code:
//bans a client by clientnumber
        void banCommandClientNum(String command, ServerClient issuer)
        {
            Char[] delimit = { ' ' };
            String[] split = command.Split(delimit);
            if (!(split.Length > 1))
            {
                TellClient(issuer.ClientNum, "Please enter a player number", true);
                return;
            }
            if (split.Length > 2)
            {
                String reason = "";
                for (int i = 2; i < split.Length; i++)
                {
                    reason += " " + split[i];
                }
                ServerCommand("banclient " + split[1]);
            }
            else if (split.Length <= 2)
            {
                ServerCommand("banclient " + split[1]);
            }
            TellClient(issuer.ClientNum, "Player kicked", false);
Can we use that? Here's also a better example of the reasoning kick..
Code:
//kicks a client by clientnumber
        void kickCommandClientNum(String command, ServerClient issuer)
        {
            Char[] delimit = { ' ' };
            String[] split = command.Split(delimit);
            if (!(split.Length > 1))
            {
                TellClient(issuer.ClientNum, "Please enter a player number", true);
                return;
            }
                if (split.Length > 2)
                {
                    String reason = "";
                    for (int i = 2; i < split.Length; i++)
                    {
                        reason += " " + split[i];
                    }
                    reason = warner.reasonParser(reason.Trim());
                    ServerCommand("dropclient " + split[1] + " \"" + reason + "\"");
                }
                else if (split.Length <= 2)
                {
                    ServerCommand("dropclient " + split[1] + " \"See You...\"");
got it from same place.
Reply

#50
bonemind's plugin?
thats the kicking command and shit , exist in every plugin.
Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
Wink Plugin with !ban !kick and !tampban clemi555 3 3,905 11-09-2013, 09:21
Last Post: clemi555
  AntiNoScope Plugin clemi555 5 4,377 11-08-2013, 19:13
Last Post: clemi555
  [Release] Bunker Plugin 1.3 archit 68 38,487 10-30-2013, 11:59
Last Post: clacki
  Help Modifying plugin maverigh 5 5,279 10-19-2013, 10:29
Last Post: Nekochan
Shocked [Request] Switch plugin axel-le-meilleur 6 4,663 10-19-2013, 06:59
Last Post: iRoNinja
  [Request] Anoying and bad names kicker! Misterio 1 2,244 10-15-2013, 09:41
Last Post: Nekochan
  [Release] Yurio Map Plugin Yurio 101 57,925 09-26-2013, 13:38
Last Post: First_Semyon
Brick [Release] v1.1 ChangeMap/NextMap Plugin without any configuration milchshake 23 17,446 09-23-2013, 13:18
Last Post: SgtLegend
  Help !say Plugin (like the !say from GodPlugin) Hallla 0 2,538 09-13-2013, 09:31
Last Post: Hallla
Rainbow [Release] MW3: Random Weapon Plugin V1 Nekochan 50 30,717 09-11-2013, 15:11
Last Post: EnVi Sweden Rocks

Forum Jump:


Users browsing this thread:
1 Guest(s)

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