View Single Post
karaulov
Senior Member
Join Date: Jul 2018
Old 12-28-2021 , 22:47   Re: [ReApi/ReGameDll] Unreal Spawn Fixer
Reply With Quote #6

Quote:
Originally Posted by Shadows Adi View Post
If you need reGameDLL for this plugin, why not use it's cvars?
PHP Code:
// Kill the player in filled spawn before spawning some one else (Prevents players stucking in each other).
// Only disable this if you have semiclip or other plugins that prevents stucking
// 0 - disabled
// 1 - enabled
//
// Default value: "1"
mp_kill_filled_spawn 1 
Also, don't hardcode:
Code:
new maxplayers = 32;
Not all servers has 32 players. Use get_maxplayers() or m_nMaxPlayers game member.
Code:
get_member_game(m_nMaxPlayers)
It initialized at maxplayers = get_maxplayers(); line. But it not using if server has TeamSemiclip or Resemiclip.

mp_kill_filled_spawn not adding more spawn points, and players can't join to any team.

Last edited by karaulov; 12-28-2021 at 22:56.
karaulov is offline