CSGO player menu votes!

kdawgmaster
A semi-regular
A semi-regular
Posts: 21
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Fri Aug 17, 2012 12:07 pm

CSGO player menu votes!

Post by kdawgmaster »

Im wondering if anyones found a way to take a way votes from players like when they press ESC and hey get scamble teams and stuff?
EzRemade
New to forums
New to forums
Posts: 10
Joined: Sat Aug 25, 2012 12:10 pm

Re: CSGO player menu votes!

Post by EzRemade »

Put sv_allow_votes 0 in your server.cfg
FlyingMongoose
This is my homepage
This is my homepage
Posts: 353
Joined: Fri Sep 17, 2004 7:50 pm
Contact:

Re: CSGO player menu votes!

Post by FlyingMongoose »

Through the gamemodes_server.txt file you can also decide which items you WANT people to have access to vote, for this to work sv_allow_votes should be 1, the following would be put into the "convars" block for gamemodes_server.txt of whatever gamemode you set.

Code: Select all

//Votes
						// Can people hold votes to change levels?
						"sv_vote_issue_changelevel_allowed"		"0"
						// Can people hold votes to kick players from the server?
						"sv_vote_issue_kick_allowed"			"0"
						// Allow players to extend the current map?
						"sv_vote_issue_nextlevel_allowextend"	"0"
						// Can people hold votes to restart the game?
						"sv_vote_issue_restart_game_allowed"	"0"
						// Can people hold votes to scramble the teams?
						"sv_vote_issue_scramble_teams_allowed"	"0"
						// Can people hold votes to surrender?
						"sv_vote_issue_surrrender_allowed"		"0"
						// Can people hold votes to swap the teams?
						"sv_vote_issue_swap_teams_allowed"		"0"
						// How long should a kick vote ban someone from the server? (in minutes)
						"sv_vote_kick_ban_duration"				"5"
set how you like.
Image
finn
A regular
A regular
Posts: 59
Joined: Sat Aug 25, 2012 3:48 pm

Re: CSGO player menu votes!

Post by finn »

It seems odd, have you noticed if just setting sv_allow_votes to 0 it just disables the ability to vote kick. Every other vote seems to be available still.
FlyingMongoose
This is my homepage
This is my homepage
Posts: 353
Joined: Fri Sep 17, 2004 7:50 pm
Contact:

Re: CSGO player menu votes!

Post by FlyingMongoose »

hadn't noticed, but I do have that stuff in my gamemodes_server and no votes work, these can ONLY be set in gamemods_server.txt.
Image
kdawgmaster
A semi-regular
A semi-regular
Posts: 21
Joined: Fri Aug 17, 2012 12:07 pm

Re: CSGO player menu votes!

Post by kdawgmaster »

K got that fixed!!! TYVM much guys.

Now im trying to fix the issue where only 25 people can join the server and not the full 30 people, do you guys now of a fix?
User avatar
TimeX
Staff
Staff
Posts: 1730
Joined: Thu Jul 22, 2004 12:24 am
Location: Big Bear, CA

Re: CSGO player menu votes!

Post by TimeX »

The last time I saw that come up, it was on a server running Sourcemod and the reserved slots plugin, but I was not able to get confirmation on it being the problem. Are you able to get more than 25 players in if Sourcemod is disabled?
TimeX
kdawgmaster
A semi-regular
A semi-regular
Posts: 21
Joined: Fri Aug 17, 2012 12:07 pm

Re: CSGO player menu votes!

Post by kdawgmaster »

If im not mistaken it was having the same issue before i installed sourcemod. Iv heard people say disbale reserved slots so thats what i did and nothing changed. Iv also been reading its a problem witht he game in general where its just glitching out.
EzRemade
New to forums
New to forums
Posts: 10
Joined: Sat Aug 25, 2012 12:10 pm

Re: CSGO player menu votes!

Post by EzRemade »

My question is, can players use the build in vote kick to kick source mod admins?
kdawgmaster
A semi-regular
A semi-regular
Posts: 21
Joined: Fri Aug 17, 2012 12:07 pm

Re: CSGO player menu votes!

Post by kdawgmaster »

Is there a way to remove people getting kicked for sitting in spec?
finn
A regular
A regular
Posts: 59
Joined: Sat Aug 25, 2012 3:48 pm

Re: CSGO player menu votes!

Post by finn »

mp_autokick 0
LittleB
This is my homepage
This is my homepage
Posts: 160
Joined: Mon Feb 06, 2012 4:14 am
Location: US
Contact:

Re: CSGO player menu votes!

Post by LittleB »

Here's the most up to date cvar list from the SM forums.
Attachments
cvarlist-sorted.txt
(138.55 KiB) Downloaded 218 times
Image
FlyingMongoose
This is my homepage
This is my homepage
Posts: 353
Joined: Fri Sep 17, 2004 7:50 pm
Contact:

Re: CSGO player menu votes!

Post by FlyingMongoose »

Per the sourcemod developers the following happens.
The function sourcemod hooks for reserved slots and slot counts hooks a code-based slot report. No matter what the player slots are it always reports 32, despite what the server is set to. This is why reservedslot player count is broken.

I also, have heard (though it is rumored removed) by default, CS: GO actually has a reduced maximum player slots (not sure what it is). This was absolutely true during the beta, but as I stated it's rumored to be removed, the only issue with that is, there is no update log that indicates a change to player slots other than scoreboard modification. So I believe CS: GO does actually support a MAXIMUM number of players that is actually LESS than 32 slots.
Image
kdawgmaster
A semi-regular
A semi-regular
Posts: 21
Joined: Fri Aug 17, 2012 12:07 pm

Re: CSGO player menu votes!

Post by kdawgmaster »

is there a way to remove the se version of the maps from the server?
LittleB
This is my homepage
This is my homepage
Posts: 160
Joined: Mon Feb 06, 2012 4:14 am
Location: US
Contact:

Re: CSGO player menu votes!

Post by LittleB »

FlyingMongoose wrote:Per the sourcemod developers the following happens.
The function sourcemod hooks for reserved slots and slot counts hooks a code-based slot report. No matter what the player slots are it always reports 32, despite what the server is set to. This is why reservedslot player count is broken.

I also, have heard (though it is rumored removed) by default, CS: GO actually has a reduced maximum player slots (not sure what it is). This was absolutely true during the beta, but as I stated it's rumored to be removed, the only issue with that is, there is no update log that indicates a change to player slots other than scoreboard modification. So I believe CS: GO does actually support a MAXIMUM number of players that is actually LESS than 32 slots.

I heard 24,but don't quote me on it.
Image
Post Reply