Commit ed26a3
2025-01-05 02:33:56 Ch0wW: -/-/dev/null .. goldsrc/counter-strike/pre16_won2.md | |
@@ 0,0 1,49 @@ | |
+ | # Counter-Strike (From Beta 6.5 to Release 1.5) (WON2) |
+ | |
+ | # Installation of |
+ | |
+ | 1) Install Half-Life 1 (Retail) |
+ | 2) Update your game to version 1.1.1.0 (the last update before VALVe moved to their STEAM interface) |
+ | 3) Download the releases of Counter-Strike you desire below. |
+ | |
+ | Alternatively, you can download this archive on [MEGA](#) which contains Half-Life 1 already patched to version 1.1.1.0 as well as containing all major builds of Counter-Strike (Beta 6.6, 7.1, Retail 1.0, Retail 1.1, Retail 1.3, Retail 1.5). |
+ | |
+ | |
+ | # Versions of Counter-Strike's betas supported in HL 1.1.1.0 |
+ | |
+ | This table is adapted from the [CounterStrike Betas repository on Github](https://github.com/Ch0wW/counterstrike-betas/). |
+ | |
+ | | Version | Release Date | Windows? | Hostable on Linux? | Download | |
+ | | -------- | ------- | ------- | -------- | -------- | |
+ | | Beta 6.2 | `March 26, 2000` | ❌ | ❌ | **MISSING** | |
+ | | Beta 6.1 | `March 24, 2000` | ✔ | ✔ | [**Download**](https://github.com/Ch0wW/counterstrike-betas/archive/refs/heads/csbeta61.zip) | |
+ | | Beta 6.0 | `March 10, 2000` | ✔ | ✔ | [**Download**](https://github.com/Ch0wW/counterstrike-betas/archive/refs/heads/csbeta60.zip) | |
+ | | Beta 5.2 | `January 10, 2000` | ✔ | ✔ | [**Download**](https://github.com/Ch0wW/counterstrike-betas/archive/refs/heads/csbeta52.zip) | |
+ | | Beta 5.0 | `December 23, 1999` | ✔ | ✔ | [**Download**](https://github.com/Ch0wW/counterstrike-betas/archive/refs/heads/csbeta50.zip) | |
+ | | Beta 4.1 | `December 1, 1999` | ✔ | ❌ | [**Download**](https://github.com/Ch0wW/counterstrike-betas/archive/refs/heads/csbeta41.zip) | |
+ | | Beta 4.0 | `November 5, 1999` | ✔ | ✔ | [**Download**](https://github.com/Ch0wW/counterstrike-betas/archive/refs/heads/csbeta40.zip) | |
+ | | Beta 3.1 | `September 16, 1999` | ✔ | ✔ | [**Download**](https://github.com/Ch0wW/counterstrike-betas/archive/refs/heads/csbeta31.zip) | |
+ | | Beta 3.0 | `September 14, 1999` | ✔ | ❌ | [**Download**](https://github.com/Ch0wW/counterstrike-betas/archive/refs/heads/csbeta30.zip) | |
+ | | Beta 2.1 | `August 17, 1999` | ✔ | ❌ | [**Download**](https://github.com/Ch0wW/counterstrike-betas/archive/refs/heads/csbeta21.zip) | |
+ | | Beta 2.0 | `August 13, 1999` | ✔ | ❌ | [**Download**](https://github.com/Ch0wW/counterstrike-betas/archive/refs/heads/csbeta20.zip) | |
+ | | Beta 1.2 | `July 20, 1999` | ❌ | ❌ | **MISSING** | |
+ | | Beta 1.1 | `June 27, 1999` | ✔ | ❌ | [**Download**](https://github.com/Ch0wW/counterstrike-betas/archive/refs/heads/csbeta11.zip) | |
+ | | Beta 1.0 | `June 19, 1999` | ✔ | ❌ | [**Download**](https://github.com/Ch0wW/counterstrike-betas/archive/refs/heads/csbeta10.zip) | |
+ | |
+ | # Create a Server |
+ | |
+ | ## Using Docker |
+ | You can create a server using Docker by using my [GitHub project](https://github.com/Ch0wW/docker-hlds-won2). More informations on how to run it are inside the project. |
+ | |
+ | ## Using Windows |
+ | If you desire hosting a server on Windows, you can create a batch file inside the HL1 folder (see example below) |
+ | |
+ | Batch example: Hosting a CS Beta 1.1 server on cs_assault, using port 27015 (the default one) with a maximum of 16 players: |
+ | ```sh |
+ | set MAXPLAYERS=16 |
+ | set PORT=27015 |
+ | set GAME=cstrk11 |
+ | set MAP=cs_assault |
+ | |
+ | start hlds.exe -game %GAME% +maxplayers %MAXPLAYERS% +map %MAP% |
+ | ``` |