Skip to content

Commit

Permalink
Merge pull request #4 from Hedgefog/master
Browse files Browse the repository at this point in the history
Release 0.9.2
  • Loading branch information
Hedgefog authored May 20, 2022
2 parents b0b770f + 8d48a4f commit 2a4bef0
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 50 deletions.
6 changes: 6 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# These are supported funding model platforms

github: hedgefog
ko_fi: hedgefog
liberapay: hedgefog
issuehunt: hedgefog
94 changes: 47 additions & 47 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
### ❄ Snow Wars mod for Counter-Strike 1.6
__Version:__ 0.9.1 (Alpha)

### 📄 About

Snow Wars is a Counter-Strike mod based on snowballs fights with original Counter-Strike modes.

#### Weapons and Artifacts

- Snowball - deals 50 damage on hit
- Slightshot - allows you to shoot snowballs with extra controlled power
- Lemon Juice - adds radius damage to your snowballs. It's yellow for a reason and enemies find it humiliating.
- Down Jacket - reduces taken damage
- Surprise Box - SURPRISE, but in the box.

### 🔽 Download latest:
- [Releases](../../releases)

### 🔄 Requirements
- Amx Mod X 1.9.0+
- RegameDLL + ReAPI
- Metamod-R or Metamod-P (for windows)

## 🔧 Deployment
- Clone repository.
- Install dependencies `npm i`

#### Customize builder
Use `.amxxpack.json` configuration file

#### Build project

```bash
npm run build
```

#### Watch project

```bash
npm run watch
```

#### Create bundle

```bash
npm run pack
```
### ❄ Snow Wars mod for Counter-Strike 1.6
__Version:__ 0.9.22 (Alpha)

### 📄 About

Snow Wars is a Counter-Strike mod based on snowballs fights with original Counter-Strike modes.

#### Weapons and Artifacts

- Snowball - deals 50 damage on hit
- Slightshot - allows you to shoot snowballs with extra controlled power
- Lemon Juice - adds radius damage to your snowballs, it's yellow for a reason and enemies find it humiliating
- Down Jacket - reduces taken damage
- Surprise Box - SURPRISE, but in the box

### 🔽 Download latest:
- [Releases](../../releases)

### 🔄 Requirements
- Amx Mod X 1.9.0+
- RegameDLL + ReAPI
- Metamod-R or Metamod-P (for windows)

## 🔧 Deployment
- Clone repository.
- Install dependencies `npm i`

#### Customize builder
Use `.amxxpack.json` configuration file

#### Build project

```bash
npm run build
```

#### Watch project

```bash
npm run watch
```

#### Create bundle

```bash
npm run pack
```
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "snowwars",
"version": "0.9.1",
"version": "0.9.2",
"author": "Hedgehog Fog",
"description": "Snow Wars Mod",
"scripts": {
Expand Down
4 changes: 4 additions & 0 deletions src/scripts/core/sw_gamemode.sma
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ public plugin_init() {
}

public client_disconnected(pPlayer) {
if (!is_user_connected(pPlayer)) {
return;
}

@Player_DropItems(pPlayer);
@Player_DropArtifacts(pPlayer);
}
Expand Down

0 comments on commit 2a4bef0

Please sign in to comment.