Jump to content

Search the Community

Showing results for tags 'archive'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Administration
    • Register
    • Docs
    • Announcements
    • Security
  • Community
    • Projects
    • Feedback
    • Servers management
  • Counter-Strike: 2
    • Discussions
  • Counter-Strike: 1.6
    • Servers
    • Discussions
    • Tutorials
    • AMX Mod X
    • Resources
  • Metin2
    • Metin2 Plague
  • PHOTOSHOP
    • Area for Photoshop
  • OLDS ⚬ IT
    • Resurse Jocuri
    • Resurse Webmasteri
    • Operating Systems
  • ZONA INTERZISA
    • Vechi

Categories

  • Counter-Strike: 1.6
    • Servers
    • Client

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Tara


Oras


Steam

Found 6 results

  1. Va anunt aici ca lucrez la mai multe versiuni de servere gata facute clean, ce inseamna? Vor exista diferite versiuni de servere (build-uri) pe care le-am gasit pe un hard mai vechi, inclusiv ultima versiune de pe steam cu dproto si versiunea rehlds. Daca sunt persoane care vor sa contribuie vor primi access la repository pe github cand acesta este gata: oldstyle-community (github.com) Aceste arhive vor fi postate pe portalul de download posibil in shop unde va trebuie 100 / 1.000 de points pentru a descarca o versiune.
  2. If you want to add custom addons, plugins follow the steps bellow: mkdir ~/amxmodx && cd ~/amxmodx Download the amxmodx and cstrike addons: wget https://www.amxmodx.org/amxxdrop/1.9/amxmodx-1.9.0-git5293-base-linux.tar.gz ; wget https://www.amxmodx.org/amxxdrop/1.9/amxmodx-1.9.0-git5293-cstrike-linux.tar.gz ; tar -xvf amxmodx-1.9.0-git5293-base-linux.tar.gz && tar -xvf amxmodx-1.9.0-git5293-cstrike-linux.tar.gz ; Copy the addons folder to your server mv addons ~/Steam/cs_server/cstrike
  3. In your cstrike folder, find the liblist.gam and open it with a text editor, such as notepad. Find this: gamedll dlls/mp.dll gamedll_linux dlls/cs.so gamedll_osx dlls/cs.dylib Replace it with this line: gamedll_linux addons/metamod/dlls/metamod.so Go to your server directory cstrike folder cd ~/Steam/cs_server/cstrike Download the Metamod and Extract the files on your desktop now copy the addons folder inside your cstrike server folder. mkdir -p addons/metamod/dlls; cd ~/Steam/cs_server/cstrike/addons/metamod/dlls; wget https://github.com/Bots-United/metamod-p/releases/download/v1.21p38/metamod_i686_linux_win32-1.21p38.tar.xz; tar -xvf metamod_i686_linux_win32-1.21p38.tar.xz; rm -rf metamod_i686_linux_win32-1.21p38.tar.xz; Internal Add this new line in the file cstrike/addons/metamod/plugins.ini, if it does not exist create it. linux addons/amxmodx/dlls/amxmodx_mm_i386.so Save (and upload) plugins.ini
  4. How many servers are using ReHLDS? here you can see: GameTracker.com At the end of this topic you will find what ReHLDS is in case of you don'd know it already. Install If you don't know how to install it follow those steps bellow. Go to Releases · dreamstalker/rehlds (github.com) and download the latest Release (BIN) of ReHLDS in my case is https://github.com/dreamstalker/rehlds/releases/download/3.11.0.767/rehlds-bin-3.11.0.767.zip You need to install zip on your linux. Ubuntu sudo apt-get install zip Go to your server directory location cd ~/Steam/cs_server Download and Extract the files wget https://github.com/dreamstalker/rehlds/releases/download/3.11.0.767/rehlds-bin-3.11.0.767.zip ; unzip -o rehlds-bin-3.11.0.767.zip ; rm -rf rehlds-bin-3.11.0.767.zip ; What is ReHLDS:
  5. What is Reunion? The Reunion plugin allow the players from steam and non-steam (47/48) to connect on your ReHLDS server! Install Download the archive form Extract the archive content to your desktop, copy reunion.cfg inside your server, cstrike folder. Now go inside the directory bin/linux and copy reunion_mm_i386.so inside your server, addons/metamod/dlls folder. Add new line at the end of the file cstrike/addons/metamod/plugins.ini linux addons/metamod/dlls/reunion_mm_i386.so
  6. Bellow you can find all the commands that you need to create an Counter-Strike: 1.6 Server on Ubuntu 22.04.1 Requirements Default sudo apt install curl wget file tar bzip2 gzip unzip bsdmainutils python3 util-linux ca-certificates binutils bc jq tmux netcat lib32gcc1 lib32stdc++6 libsdl2-2.0-0:i386 steamcmd Add the multiverse repository and the i386 architecture: sudo add-apt-repository multiverse sudo dpkg --add-architecture i386 Update the repository to make sure new packages can be installed: sudo apt update Install the 32 bit libraries that steamcmd requires: sudo apt install lib32gcc-s1 lib32stdc++6 libc6-i386 libcurl4-gnutls-dev:i386 libsdl2-2.0-0:i386 Security Secure your game server add new user and set new password adduser cstrike_server Change to the new user sudo su cstrike_server You can find his directory on /home/cstrike_server Security tips for your server here: soon Server files Download the latest version of the server use the command: curl -sqL "https://github.com/oldstyle-community/cstrike_steamcmd/archive/refs/tags/8684.tar.gz" | tar zxvf - Set permissions: chmod -R 777 ~/cstrike_steamcmd-8684 Test if the server starts using this command, remember edit the <IP> with your vps/vds ip address: ./hlds_run -console -game cstrike +ip <IP> +port 27015 +map de_dust +maxplayers 32 +pingboost 2 +sys_ticrate 1000 In case of 'FATAL ERROR (shutting down): Unable to initialize Steam.' press CTRL+C and try again one more time the command above. Now if is working you can start the server with the command screen and if you close your ssh console the server will be on always. cd ~/cstrike_steamcmd-8684 && screen -S CSTRIKE_SERVER -X quit && screen -S CSTRIKE_SERVER -d -m ./hlds_run -console -game cstrike +ip <IP> +port 27015 +map de_dust +maxplayers 32 +pingboost 2 +sys_ticrate 1000 To leave the console wihout closing the server press: CTRL+A+D If you want to open the console back use the command: screen -r CSTRIKE_SERVER E.G. Login Failure: No Connection On linux servers, you may experience a "Login Failure: No Connection" error. This is related to missing iptables rules. You will want something along these lines: iptables -A INPUT -p udp -m udp --sport 27000:27030 --dport 1025:65355 -j ACCEPT iptables -A INPUT -p udp -m udp --sport 4380 --dport 1025:65355 -j ACCEPT iptables -A INPUT -p udp -m udp --sport 27000:27030 --dport 1025:65355 -j ACCEPT iptables -A INPUT -p udp -m udp --sport 4380 --dport 1025:65355 -j ACCEPT Done. ReHLDS or HLDS If you want to use ReHLDS scroll down to the section, if not use HLDS steps. HLDS If you want to customize your server with addons and plugins follow the steps bellow: AMX Mod X Metamod dproto Done. ReHLDS Here you can see what ReHLDS means and how to install it: https://olds.ro/topic/14729-how-to-install-rehlds-tutorial/ AMX Mod X Metamod-p Reunion Done. Sources used in this tutorial: https://olds.ro HLDS, AMX Mod X, Metamod, dproto https://developer.valvesoftware.com/wiki/SteamCMD https://www.amxmodx.org/downloads-new.php https://wiki.alliedmods.net/Installing_AMX_Mod_X_Manually CS.RIN.RU - Steam Underground Community • View topic - dproto [0.9.582] - HLDS serverside crack (22/09/2017) ReHLDS, AMX Mod X, metamod-p, reunion https://github.com/dreamstalker/rehlds https://github.com/jkivilin/metamod-p http://www.dedicated-server.ru/vbb/showthread.php?t=26486

×
×
  • Create New...