https://github.com/jonteohr/viprespawns
Sourcemod plugin. Allowing players with A-flag respawn 3 times per map!
https://github.com/jonteohr/viprespawns
csgo server-administration sourcemod sourcemod-plugin
Last synced: about 1 month ago
JSON representation
Sourcemod plugin. Allowing players with A-flag respawn 3 times per map!
- Host: GitHub
- URL: https://github.com/jonteohr/viprespawns
- Owner: jonteohr
- License: gpl-3.0
- Created: 2017-05-25T11:15:23.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-02-11T08:42:32.000Z (about 5 years ago)
- Last Synced: 2025-10-09T11:59:44.263Z (6 months ago)
- Topics: csgo, server-administration, sourcemod, sourcemod-plugin
- Language: SourcePawn
- Homepage:
- Size: 131 KB
- Stars: 4
- Watchers: 3
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VIPRespawns [](https://travis-ci.org/condolent/VIPRespawns) [](https://gitter.im/VIPRespawns/Lobby) [](https://github.com/condolent/VIPRespawns/releases) 
Sourcemod plugin. Allowing players with A-flag respawn x times per map!
[AlliedMods](https://forums.alliedmods.net/showthread.php?p=2523408#post2523408)
## Usage
Players with the `a`-flag gets 3 respawns per map.
To respawn, you simply use the command `!vipspawn` when dead.
You can also check how many respawns you have left via `!spawnsleft`.
A menu available via `!vip`, as long as it has not been disabled in config.
## Downloads
[Releases](https://github.com/condolent/VIPRespawns/releases)
[Website](https://condolent.xyz/VIPRespawns/)
## Installation
Simply download the `viprespawn.smx` file via the link above and drag the file to `/addons/sourcemod/plugins`.
Then execute command in server console:
`sm plugins load viprespawn`
To mod the plugin you will need the [colors](https://forums.alliedmods.net/showthread.php?t=96831) include.
## Configuration
The config-file is located in `root/csgo/cfg/sourcemod/viprespawns.cfg`. In there you can change some options.
This is how the config looks like:
```
// This file was auto-generated by SourceMod (v1.8.0.5998)
// ConVars for plugin "viprespawn.smx"
// Enable the VIP-menu called with !vip?
// (0 = Disable, 1 = Enable)
// -
// Default: "1"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_enable_vip_menu "1"
// Amount of times a user is allowed to respawn per map
// -
// Default: "3"
sm_respawn_amount "3"
// How many players needs to be alive in order to respawn
// Set 0 to allow all the time.
// -
// Default: "3"
sm_minimum_players_alive "3"
// Should the sm_minimum_players_alive only count players playing on a specific side?
// 0 = Disable. 1 = Track terrorists. 2 = Track counter-terrorists.
// -
// Default: "0"
sm_minimum_players_alive_side "0"
```
## Translation
Want to help translate the plugin?
Create a [Pull request](https://github.com/condolent/VIPRespawns/pulls) and edit the viprespawn.phrases.txt with your language added. Or you can create a [ticket](https://github.com/condolent/VIPRespawns/issues) with and write which language you're fluent within!
### Credits
Props to [B2SX](https://forums.alliedmods.net/member.php?u=265974) for creating the base-code for respawns!
What I did was clean the code a bit and added some more end-user friendly properties.