Raised This Month: $32 Target: $400
 8% 

Sourcemod commands won't work when in a tournament match


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Shulqiple
New Member
Join Date: Dec 2015
Old 12-02-2015 , 12:58   Sourcemod commands won't work when in a tournament match
Reply With Quote #1

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:
Quote:
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?

Last edited by Shulqiple; 12-02-2015 at 13:14.
Shulqiple is offline
asherkin
SourceMod Developer
Join Date: Aug 2009
Location: OnGameFrame()
Old 12-02-2015 , 13:29   Re: Sourcemod commands won't work when in a tournament match
Reply With Quote #2

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)?
__________________
asherkin is offline
Squallkins
AlliedModders Donor
Join Date: Mar 2005
Old 12-02-2015 , 14:58   Re: Sourcemod commands won't work when in a tournament match
Reply With Quote #3

Quote:
Originally Posted by Shulqiple View Post

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?

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

cfg/sourcemod/soap_live.cfg
PHP Code:
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 sounds 
and cfg/sourcemod/soap_notlive.cfg when tournament finishes:
PHP Code:
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.
Squallkins is offline
Ade
I love purple
Join Date: May 2010
Old 12-03-2015 , 05:46   Re: Sourcemod commands won't work when in a tournament match
Reply With Quote #4

or learn what plugins ur adding to ur server
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...
__________________
Ade is offline
Shulqiple
New Member
Join Date: Dec 2015
Old 12-03-2015 , 08:57   Re: Sourcemod commands won't work when in a tournament match
Reply With Quote #5

Quote:
Originally Posted by .:{EK}:. SQUALL View Post
That plugin runs this cfg file when live:

cfg/sourcemod/soap_live.cfg
PHP Code:
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 sounds 
and cfg/sourcemod/soap_notlive.cfg when tournament finishes:
PHP Code:
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.
Thanks, problem solved.
Shulqiple is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 07:38.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode