csgo-pug-setup icon indicating copy to clipboard operation
csgo-pug-setup copied to clipboard

Pug setup server crash

Open iryzer opened this issue 3 years ago • 7 comments

Expected behavior

Scrim starting smoothly without errors

Actual behavior

server is crashing

Steps to reproduce

sadly its kinda random. If the scrim started (meaning knife round ongoing) - the problems dont occur. Its only when players are joining/joined the server and as far as i experienced, only when more than 5 people are on it (Server does have 12 slots)

  • Plugin version:
  • practicemode 1.3.3
  • pugsetup 2.0.5
  • Sourcemod version: 1.10.0

iryzer avatar Mar 03 '21 22:03 iryzer

Expected behavior

For it to work

Actual behavior

Doesn't work

Steps to reproduce

Idk bruh its random

  • Plugin version:
  • practicemode 1.3.3
  • pugsetup 2.0.5
  • Sourcemod version: 1.10.0

WardPearce avatar Mar 08 '21 01:03 WardPearce

Actual problem, more 11 player = crash

el9in avatar Jul 06 '21 20:07 el9in

We experience the same weird behaviour on our server. It crashes when there are more than 10 players in the game (excluding spectators).

Jasperhino avatar Jul 09 '21 17:07 Jasperhino

We experience the same weird behaviour on our server. It crashes when there are more than 10 players in the game (excluding spectators).

Disable warmup first.

el9in avatar Jul 09 '21 18:07 el9in

We experience the same weird behaviour on our server. It crashes when there are more than 10 players in the game (excluding spectators).

Disable warmup first.

Where and how?

Jasperhino avatar Jul 11 '21 17:07 Jasperhino

We experience the same weird behaviour on our server. It crashes when there are more than 10 players in the game (excluding spectators).

Disable warmup first.

Where and how?

Console command "mp_warmup_end"

el9in avatar Jul 11 '21 22:07 el9in

Just edit the /csgo/scripts/vscripts/warmup/warmup_teleport.nut

From:

if (GAMEMODE == 1 && GAMETYPE == 0)		// check if we're running comp
{
	COMPMATCH = true;

To:

if (GAMEMODE == 1 && GAMETYPE == 0)		// check if we're running comp
{
	COMPMATCH = false;

This will disable the arena Warmup! We use this on all our scrim servers :)

enghausen avatar Dec 14 '21 21:12 enghausen