PDA

View Full Version : Sourcemod commands won't work when in a tournament match


Shulqiple
12-02-2015, 12:58
I didn't find any thread regarding this issue and I'm not sure if this is the right place to post this on so correct me if I'm doing something wrong, but anyways let's talk about the issue:

Once both teams ready up in mp_tournament 1 and the match starts, I can't use any Sourcemod command from both client side and server side (unknown command) but when the match is over, Sourcemod commands work.

The server is running on Linux and is using Sourcemod 1.7.3 git5275 and MetaMod 1.10.7 git947.
List of plugins:
01 "Maps and Prefix Maps Configs" (1.2) by graczu
02 "Updater" (1.2.2) by GoD-Tony
03 "tDownloadCache" (0.0.2) by Thrawn
04 "demos.tf uploader" (0.2) by Icewind
05 "tETF2LDivision" (0.1.2) by Thrawn
06 "SOAP Tournament" (3.4) by Lange
07 "Admin File Reader" (1.7.3-dev+5275) by AlliedModders LLC
08 "Admin Help" (1.7.3-dev+5275) by AlliedModders LLC
09 "Admin Menu" (1.7.3-dev+5275) by AlliedModders LLC
10 "Anti-Flood" (1.7.3-dev+5275) by AlliedModders LLC
11 "Basic Ban Commands" (1.7.3-dev+5275) by AlliedModders LLC
12 "Basic Chat" (1.7.3-dev+5275) by AlliedModders LLC
13 "Basic Comm Control" (1.7.3-dev+5275) by AlliedModders LLC
14 "Basic Commands" (1.7.3-dev+5275) by AlliedModders LLC
15 "Basic Info Triggers" (1.7.3-dev+5275) by AlliedModders LLC
16 "Basic Votes" (1.7.3-dev+5275) by AlliedModders LLC
17 "Client Preferences" (1.7.3-dev+5275) by AlliedModders LLC
18 "Fun Commands" (1.7.3-dev+5275) by AlliedModders LLC
19 "Fun Votes" (1.7.3-dev+5275) by AlliedModders LLC
20 "Player Commands" (1.7.3-dev+5275) by AlliedModders LLC
21 "Reserved Slots" (1.7.3-dev+5275) by AlliedModders LLC
22 "Sound Commands" (1.7.3-dev+5275) by AlliedModders LLC
23 <Error> "MGEMod" (error because map is not supported [cp_badlands]) (2.0.9.2) by Lange & Cprice; based on kAmmomod by Krolus.
24 "SOAP TF2 Deathmatch" (3.6) by MikeJS, Lange, & Tondark

Is it meant to not work in the middle of a tournament match, is it a bug or do I need to change something in one of the server files?

asherkin
12-02-2015, 13:29
What's the output of "plugin_print", "meta list", and "sm plugins list" (all need to be run server-side) *during* a match (when it's not working)?

Squallkins
12-02-2015, 14:58
Once both teams ready up in mp_tournament 1 and the match starts, I can't use any Sourcemod command from both client side and server side (unknown command) but when the match is over, Sourcemod commands work.

Is it meant to not work in the middle of a tournament match, is it a bug or do I need to change something in one of the server files?


06 "SOAP Tournament" (3.4) by Lange
That plugin runs this cfg file when live:

cfg/sourcemod/soap_live.cfg

sm plugins unload admin-flatfile
sm plugins unload adminhelp
sm plugins unload adminmenu
sm plugins unload antiflood
sm plugins unload autoupdate
sm plugins unload basebans
sm plugins unload basechat
sm plugins unload basecomm
sm plugins unload basecommands
sm plugins unload basetriggers
sm plugins unload basevotes
sm plugins unload clientprefs
sm plugins unload funcommands
sm plugins unload funvotes
sm plugins unload nextmap
sm plugins unload playercommands
sm plugins unload reservedslots
sm plugins unload soap_tf2dm
sm plugins unload soundsand cfg/sourcemod/soap_notlive.cfg when tournament finishes:

sm plugins load admin-flatfile
sm plugins load adminhelp
sm plugins load adminmenu
sm plugins load antiflood
sm plugins load autoupdate
sm plugins load basebans
sm plugins load basechat
sm plugins load basecomm
sm plugins load basecommands
sm plugins load basetriggers
sm plugins load basevotes
sm plugins load clientprefs
sm plugins load funcommands
sm plugins load funvotes
sm plugins load nextmap
sm plugins load playercommands
sm plugins load reservedslots
sm plugins load soap_tf2dm
sm plugins load sounds

Edit soap_live.cfg to resolve your issue.

Ade
12-03-2015, 05:46
or learn what plugins ur adding to ur server :P
i dont recommend editing that cfg much, its just there to disable most plugins except itself (and maybe smac) while an official match is running, to improve performance and to avoid any accidental binds using sm being run and u can think of other reasons besides those.
that's how it's supposed to be...

Shulqiple
12-03-2015, 08:57
That plugin runs this cfg file when live:

cfg/sourcemod/soap_live.cfg

sm plugins unload admin-flatfile
sm plugins unload adminhelp
sm plugins unload adminmenu
sm plugins unload antiflood
sm plugins unload autoupdate
sm plugins unload basebans
sm plugins unload basechat
sm plugins unload basecomm
sm plugins unload basecommands
sm plugins unload basetriggers
sm plugins unload basevotes
sm plugins unload clientprefs
sm plugins unload funcommands
sm plugins unload funvotes
sm plugins unload nextmap
sm plugins unload playercommands
sm plugins unload reservedslots
sm plugins unload soap_tf2dm
sm plugins unload soundsand cfg/sourcemod/soap_notlive.cfg when tournament finishes:

sm plugins load admin-flatfile
sm plugins load adminhelp
sm plugins load adminmenu
sm plugins load antiflood
sm plugins load autoupdate
sm plugins load basebans
sm plugins load basechat
sm plugins load basecomm
sm plugins load basecommands
sm plugins load basetriggers
sm plugins load basevotes
sm plugins load clientprefs
sm plugins load funcommands
sm plugins load funvotes
sm plugins load nextmap
sm plugins load playercommands
sm plugins load reservedslots
sm plugins load soap_tf2dm
sm plugins load soundsEdit soap_live.cfg to resolve your issue.

Thanks, problem solved.