In my particular case the slots are hidden but only after the 1st map change.
On the other hand the redirection doesn't seem to work.
I have a 19 slot server with 1 reserved/hidden slot. When a player connects and the server is full 18/18 (remember the hidden slot) he/she simply gets the "Server is full" message, and no redirection occurs.
Running on:
Linux
MetaMod v1.19
AMXX v1.8.1.3675
Plugin config:
Quote:
// RESERVERVED SLOTS
// 0 = disabled
// 1 = no booting but fill rslots (Recommended 2-6 slots)
// 2 = kick/redirect when full or to free slot (Recommended 1 slot)
// rslot_on <0|1|2>
rslot_on 2
// number of slots to reserve
// rslot_slots <# of slots>
rslot_slots 1
// if enabled will hide reserved slots
// (ex. 21 maxplayers will show 20/20 if rslot_slots = 1 )
// rslot_hideslots <0|1>
rslot_hideslots 1
// enable server redirection
// rslot_redirect <0|1>
rslot_redirect 1
// ip and port of the server players will be redirected to
// rslot_ip "ip:port"
rslot_ip "195.22.11.17:27020"
//(optional) password of the server players will be redirected to
// rslot_pw "none"
//--- below used for amx_reservation 2---//
// kills for rslot kicking protection (comment out #define KILLS to disable)
// rslot_kills "kills"
rslot_kills "20"
//played time for rslot kicking protection (comment out #define PLAYEDTIME to disable)
rslot_playedtime "20"
|
I use separate config files for the plugins i use and load them with a exec command in amxx.cfg
Quote:
|
exec addons/amxmodx/configs/RESERVED_SLOTS.cfg
|
I checked if the cvars are set on the servers console and they seem to be.