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.
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.
https://www.mediafire.com/folder/h09o5or8wrxbo/main
http://www.mediafire.com/download/r1dnwayhiyo/cod2multipatches.rar
This is executed from the serverside
https://znation.nl/cod4script/connectionlesspacket.htm
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...
You can see the (current user's) active screen list with:
screen -ls
https://www.gnu.org/software/screen/manual/screen.html
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");...
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.
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...
What is the output this command?
ldd libcod2_1_0.so
ln -s /path/to/cod2/main/*.iwd /path/to/srv01/main/
http://linux.die.net/man/1/ln
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...
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...
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...
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
1.3 version (untested)
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...
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...
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. ...
'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...
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...
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...
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
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...
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...
CentOS commands
http://killtube.org/showthread.php?2036-Help-me-pls)))&p=10702&viewfull=1#post10702