Page 1 of 4 123 ... LastLast
Results 1 to 10 of 32

Thread: Hello, monitoring the client without having to connect to the server!

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Sergeant maxdamage99's Avatar
    Join Date
    Aug 2014
    Location
    Russia
    Posts
    458
    Thanks
    79
    Thanked 122 Times in 101 Posts

    Hello, monitoring the client without having to connect to the server!

    I would like to know whether such control and track client before it connects to the server, and only still loaded, for example shakes MODS, or simply loaded on the server. Perhaps watching his actions and control them? with or without wider support LIBCOD.

  2. #2
    Brigadier General
    Join Date
    Dec 2012
    Posts
    1,012
    Thanks
    440
    Thanked 171 Times in 132 Posts
    what do you mean?

  3. #3
    Global Mossaderator Mitch's Avatar
    Join Date
    Nov 2012
    Posts
    654
    Thanks
    204
    Thanked 450 Times in 305 Posts
    It isn't clear to me either.

    Do you mean a program that you can use for rcon? Like RconTool or my own client.
    http://www.cod-rcontool.com/
    http://killtube.org/showthread.php?1...on-Tool-MeRcon

    Or managing your game server with a website with PHP and mysql? (thanks to mysql support in libcod)
    Or a online gamepanel for creating/starting/stopping your game servers? Like Open Game Panel (OGP).
    http://www.opengamepanel.org/news.php

  4. The Following User Says Thank You to Mitch For This Useful Post:

    kung foo man (13th December 2014)

  5. #4
    Sergeant maxdamage99's Avatar
    Join Date
    Aug 2014
    Location
    Russia
    Posts
    458
    Thanks
    79
    Thanked 122 Times in 101 Posts
    Sorry for my bad English.
    I would like to know whether such action to track and make certain commands, client commands, which are not yet connected to the server, but still connected (mods download, upload to server)

  6. #5
    Brigadier General
    Join Date
    Dec 2012
    Posts
    1,012
    Thanks
    440
    Thanked 171 Times in 132 Posts
    You mean when status=connecting of the player?

  7. #6
    Sergeant maxdamage99's Avatar
    Join Date
    Aug 2014
    Location
    Russia
    Posts
    458
    Thanks
    79
    Thanked 122 Times in 101 Posts
    YES. status=connection. or download mods.

  8. #7
    Global Mossaderator Mitch's Avatar
    Join Date
    Nov 2012
    Posts
    654
    Thanks
    204
    Thanked 450 Times in 305 Posts
    Quote Originally Posted by maxdamage99 View Post
    YES. status=connection. or download mods.
    Like this in every gametype on connect?

    PHP Code:
    Callback_PlayerConnect()
    {
        
    thread dummy();

        
    self.statusicon "hud_status_connecting";
        
    self waittill("begin");
        
    self.statusicon "";

        
    level notify("connected"self);

        if(!
    level.splitscreen)
            
    iprintln(&"MP_CONNECTED"self); 
    See http://killtube.org/showthread.php?1...ke-clients-fix for getting rid of fake players.
    Last edited by Mitch; 14th December 2014 at 14:23.

  9. #8
    Sergeant maxdamage99's Avatar
    Join Date
    Aug 2014
    Location
    Russia
    Posts
    458
    Thanks
    79
    Thanked 122 Times in 101 Posts
    I do not need auto-kick bots. I need a script that will monitor all actions of the player, when you connect to the server For example, if a customer enters the console-cmd: "com_maxfps 125" Client to give BAN. Can you help me with this?
    console-cmd: "com_maxfps 125" he introduced when not connected to the server, or when connected. (introduced in the console when connected to the server, and download files).
    made the ban immediately (instantly). Before connecting to the server (open the menu and select the command). At the moment of connection.
    Sorry for my bad English, and this nonsense. I'm just trying to tell you to understand me.
    Last edited by maxdamage99; 14th December 2014 at 19:35.

  10. #9
    Global Mossaderator Mitch's Avatar
    Join Date
    Nov 2012
    Posts
    654
    Thanks
    204
    Thanked 450 Times in 305 Posts
    Quote Originally Posted by maxdamage99 View Post
    I do not need auto-kick bots. I need a script that will monitor all actions of the player, when you connect to the server For example, if a customer enters the console-cmd: "com_maxfps 125" Client to give BAN. Can you help me with this?
    console-cmd: "com_maxfps 125" he introduced when not connected to the server, or when connected. (introduced in the console when connected to the server, and download files).
    made the ban immediately (instantly). Before connecting to the server (open the menu and select the command). At the moment of connection.
    Sorry for my bad English, and this nonsense. I'm just trying to tell you to understand me.
    You cannot read the client cvars so I know. But you can force a value with punkbuster on 1.2/1.3 with 'PB_SV_CVAR com_maxfps IN 30 100'.
    Or you can add a loop that keeps setting 'com_maxfps' to 80.
    PHP Code:
    while(1)
    {
        
    self setClientCvar("com_maxfps"100);
        
    wait 1;


  11. #10
    Brigadier General
    Join Date
    Oct 2012
    Posts
    994
    Thanks
    20
    Thanked 588 Times in 388 Posts
    Quote Originally Posted by Mitch View Post
    You cannot read the client cvars so I know. But you can force a value with punkbuster on 1.2/1.3 with 'PB_SV_CVAR com_maxfps IN 30 100'.
    Or you can add a loop that keeps setting 'com_maxfps' to 80.
    PHP Code:
    while(1)
    {
        
    self setClientCvar("com_maxfps"100);
        
    wait 1;

    With the COD2 engine, you can open a menu when the client has a certain Cvar set to a particular value. With that function, you can detect client settings. The menu function is:

    Code:
    uiScript openMenuonDvar <dvar> <value> <menu>;
    There is a discussion about it here:

    http://killtube.org/showthread.php?2...r-Using-a-Menu

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •