Search:

Page 3 of 13 1 2 3 4 5 6

Search: Search took 1.00 seconds; generated 72 minute(s) ago.

  1. Thread: linux rcon tool

    by Mitch
    Replies
    15
    Views
    36,778

    I have been working on remaking my rcon tool with...

    I have been working on remaking my rcon tool with Qt.
    So you can build it for Linux.
    I will push it tonight to GitHub if you are interested.
  2. Replies
    2
    Views
    6,954

    https://www.mediafire.com/folder/h09o5or8wrxbo/mai...

    https://www.mediafire.com/folder/h09o5or8wrxbo/main
    http://www.mediafire.com/download/r1dnwayhiyo/cod2multipatches.rar
  3. Replies
    24
    Views
    72,468

    This is executed from the serverside...

    This is executed from the serverside
    https://znation.nl/cod4script/connectionlesspacket.htm
  4. Replies
    34
    Views
    92,039

    The rate limit patch is not related to crashes....

    The rate limit patch is not related to crashes. It is for preventing people from generating too much traffic on your server.

    I never found why the server crashes when you are seeing a few cmdCount...
  5. You can see the (current user's) active screen...

    You can see the (current user's) active screen list with:

    screen -ls
    https://www.gnu.org/software/screen/manual/screen.html
  6. Replies
    13
    Views
    25,954

    CentOS doesn't like this function, but I have no...

    CentOS doesn't like this function, but I have no idea why.


    char* defaultweapon_mp = (char*)malloc(MAX_WEAPON_NAME_SIZE);
    void gsc_utils_init() {
    strcpy(defaultweapon_mp, "defaultweapon_mp");...
  7. Replies
    49
    Views
    168,802

    Did you just copy and paste it or modified it to...

    Did you just copy and paste it or modified it to your situation?
    If you modified it, please post your version.
    Otherwise change it to your situation.

    Edit: Also test it without tmux.
  8. Replies
    14
    Views
    122,679

    Indeed. Also the SSL labs test shows a few...

    Indeed. Also the SSL labs test shows a few issues. The most important is to disable SSLv3 and check why the certificate chain is incomplete.
    LetsEncrypt is very easy to setup and renew for a Apache...
  9. Replies
    24
    Views
    94,888

    What is the output this command? ldd...

    What is the output this command?

    ldd libcod2_1_0.so
  10. Replies
    2
    Views
    7,197

    ln -s /path/to/cod2/main/*.iwd...

    ln -s /path/to/cod2/main/*.iwd /path/to/srv01/main/
    http://linux.die.net/man/1/ln
  11. Replies
    33
    Views
    91,011

    It is global. There is no way to set them for...

    It is global. There is no way to set them for each client in libcod.
    However I thought it was possible to hook the function where each player loads the damage for the weapon.
    Also you can modify...
  12. It looks very promising. They are currently...

    It looks very promising. They are currently gathering money via kickstarter.
    https://www.kickstarter.com/projects/bulkheadinteractive/battalion-1944-pc-xb1-ps4/description

    I would at least like...
  13. Thread: assemblyes

    by Mitch
    Replies
    2
    Views
    10,627

    In CoD2 there is only one fix to q3dirtrav bug....

    In CoD2 there is only one fix to q3dirtrav bug. You need to run your server with a newer version of libcod that includes a IWD check.
    https://github.com/kungfooman/libcod

    There is a other fix...
  14. Replies
    2
    Views
    10,479

    I got these zombie maps: mp_area_51...

    I got these zombie maps:

    mp_area_51
    mp_ug_funbox_final
    mp_ug_zombietown
    mp_ug_zombridge
    mp_ug_deadbox
    mp_zomyellow
    mp_zombie_dam_v2
    mp_zombieprison_west
  15. 1.3 version (untested)

    1.3 version (untested)
  16. Replies
    20
    Views
    59,750

    Those errors are because they are only used by...

    Those errors are because they are only used by Windows.

    You should look at examples how to setup a UDP client on Linux.

    http://www.linuxhowtos.org/C_C++/socket.htm...
  17. Replies
    10
    Views
    19,507

    It depends on your requirements. If you don't...

    It depends on your requirements.
    If you don't want it to be too expensive, but still want to benefit from a SSD
    then you go for TLC drives (Samsung EVO or Crucial BX200).
    For higher speeds you...
  18. Replies
    10
    Views
    19,507

    My guess would be no. But replacing your HDD with...

    My guess would be no. But replacing your HDD with a SSD will make your laptop a lot faster.

    Edit: Normally this should not void your warranty. Some laptops are harder to get to the HDD caddy. ...
  19. Replies
    8
    Views
    10,271

    'jump_height' is cheat protected. But you can set...

    'jump_height' is cheat protected. But you can set it via gsc.


    setCvar("jump_height", 39);
    Edit 2: should be added in one of the init functions.

    Edit: there is a other function for...
  20. Replies
    8
    Views
    12,057

    You can look check the IP address within your gsc...

    You can look check the IP address within your gsc with libcod. With the mysql (included in libcod) you can maintain a online ban list.


    I have included the rate limiter from io quake (same as in...
  21. Thread: No .so created

    by Mitch
    Replies
    34
    Views
    94,105

    Try adding printf messages to locate where libcod...

    Try adding printf messages to locate where libcod crashes. I'm currently unable to duplicate your crash.
    The crash could be caused by the small differences between 1.0 versions.
    I build my...
  22. Thread: No .so created

    by Mitch
    Replies
    34
    Views
    94,105

    This should make it easier to compile without...

    This should make it easier to compile without mysql.

    Add the following code to doit.sh

    if [ "$2" == "no_mysql" ]; then
    mysql_config=""
    mysql_link=""
    fi

    After
  23. Thread: No .so created

    by Mitch
    Replies
    34
    Views
    94,105

    Which CentOS release? 7? 6? 5? cat...

    Which CentOS release? 7? 6? 5?

    cat /etc/redhat-release

    Edit: the problem that you have with your mysql is that your mysql lib is 64-bit and libcod requires the 32-bit client.
    If you can't...
  24. Thread: No .so created

    by Mitch
    Replies
    34
    Views
    94,105

    What CentOS version are you running? Also I...

    What CentOS version are you running?

    Also I have updated my CentOS build post, because in release 7 MySQL is replaced by MariaDB. Therefore the mysql packages are replaced by maradb-server and...
  25. Thread: No .so created

    by Mitch
    Replies
    34
    Views
    94,105

    CentOS commands...

    CentOS commands
    http://killtube.org/showthread.php?2036-Help-me-pls)))&p=10702&viewfull=1#post10702
Results 51 to 75 of 305
Page 3 of 13 1 2 3 4 5 6