https://github.com/gamemann/dynamic-slots
A simple Dynamic Slots plugin for SourceMod.
https://github.com/gamemann/dynamic-slots
dynamic metamod slots sourcemod sourcemod-plugin sourcemod-plugins sourcepawn
Last synced: about 1 month ago
JSON representation
A simple Dynamic Slots plugin for SourceMod.
- Host: GitHub
- URL: https://github.com/gamemann/dynamic-slots
- Owner: gamemann
- Created: 2022-06-06T06:45:22.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-06T21:23:03.000Z (over 3 years ago)
- Last Synced: 2025-04-07T03:29:32.268Z (11 months ago)
- Topics: dynamic, metamod, slots, sourcemod, sourcemod-plugin, sourcemod-plugins, sourcepawn
- Language: SourcePawn
- Homepage: https://moddingcommunity.com/
- Size: 2.93 KB
- Stars: 12
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dynamic Slots
## Description
A simple dynamic slots plugin for SourceMod that relies on increasing the visible maxplayers (`sv_visiblemaxplayers` CVar) by incrementals. The incremental value must be dividable by two.
If for whatever reason the game you're using this for doesn't support `sv_visiblemaxplayers`, the plugin will not work.
## ConVars
Here is a list of the plugin's ConVars along with their descriptions and default values.
```
// This file was auto-generated by SourceMod (v1.10.0.6537)
// ConVars for plugin "dynamic_slots.smx"
// Whether to include bots in player count calculations.
// -
// Default: "0"
ds_bots_include "0"
// Enables debugging (for developer mode only). Will log a SourceMod message.
// -
// Default: "0"
ds_debug "0"
// How many slots to increase by after 'ds_min' is reached until 'ds_max'.
// -
// Default: "2"
ds_increase "2"
// The maximum player count before the plugin stops doing anything. 0 = maxplayers.
// -
// Default: "0"
ds_max "0"
// The minimum amount of players required for the plugin to do anything.
// -
// Default: "24"
ds_min "24"
```
## Credits
* [Christian Deacon](https://github.com/gamemann)