Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate
Collapse

Plutonium

  1. Home
  2. General Discussion
  3. Any chance of controller only lobbies?

Any chance of controller only lobbies?

Scheduled Pinned Locked Moved General Discussion
5 Posts 4 Posters 165 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • TheRevvXundefined Offline
    TheRevvXundefined Offline
    TheRevvX
    wrote on last edited by
    #1

    Hello all. I enjoy playing plutonium with controller a lot more, but I am tired of being shit on by KnB users, any chances of controller only servers?

    dontknowletsplundefined 1 Reply Last reply
    0
    • Xerxesundefined Online
      Xerxesundefined Online
      Xerxes Plutonium Staff
      wrote on last edited by
      #2

      No.
      Go and use M+KB if you want to compete. It's not like we can't emulate a controller from M+KB input anyways 😂

      TheRevvXundefined 1 Reply Last reply
      0
      • dontknowletsplundefined Offline
        dontknowletsplundefined Offline
        dontknowletspl
        replied to TheRevvX on last edited by dontknowletspl
        #3

        TheRevvX you could always host your own server which kick players who do not use controller.

        This is just example script and you should modify it as you like.

        ( player will be kicked if he tries to type in chat in game )

        #include maps/mp/gametypes/_hud_util;
        #include maps/mp/_utility;
        #include common_scripts/utility;
        init()
        {        
            level thread onplayerconnect();
        }
        
        onplayerconnect()
        {
            for ( ;; )
            {
                level waittill( "connected", player );
                player thread check_controller();
            }        
        }
        
        check_controller()
        {
            level endon("end_game"); //able to type when end game
            self endon("disconnect");
            for(;;)
            {
                if(!self GamepadUsedLast()) 
                {
                    iprintln("^1" + self.name + "^7 has been kicked for not using controller");
                    wait 2;
                    kick( self getentitynumber(), "EXE_PLAYERKICKED" );
                    break;
                }
                wait 1;
            }
        }
        
        1 Reply Last reply
        0
        • TheRevvXundefined Offline
          TheRevvXundefined Offline
          TheRevvX
          replied to Xerxes on last edited by
          #4

          Xerxes Well you didn't have to be such an asshole about it dude, thanks 😕 I just want to play casually on controller, I'll note to not pay attention to you from now on, dick.

          1 Reply Last reply
          0
          • FragsAreUsundefined Offline
            FragsAreUsundefined Offline
            FragsAreUs Plutonium Staff
            wrote on last edited by
            #5

            gate keeping people out of a server just because you want to play with only controller people is in my opinion kinda retarded, would you like it when you join a server just to get kicked because you are playing on a controller?

            1 Reply Last reply
            0

            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Recent
            • Tags
            • Popular
            • Users
            • Groups
            • Donate