OpenArena Message Boards

OpenArena => General => Topic started by: Ivan_D on July 26, 2009, 11:22:41 PM



Title: 3 questions about server configuration
Post by: Ivan_D on July 26, 2009, 11:22:41 PM
  • How can I add custom callvotes?
    For example there is 'set ctf "set g_gametype 3"' line in server config. I'd like to be able to callvote as non-privileged user something like "callvote vstr ctf". If there is no direct way, haxes and workarounds would be good too.
  • How can I change quad respawn time in tdm without writing my own patch?
  • How can I mute players?


Title: Re: 3 questions about server configuration
Post by: Neon_Knight on July 26, 2009, 11:49:57 PM
For #1 you can take a look at OAX: http://openarena.ws/board/index.php?topic=1908.msg22589#msg22589
In the most newer version that feature is still there.

For #2 and #3, I can't reply. :/


Title: Re: 3 questions about server configuration
Post by: davidd on August 02, 2009, 10:23:31 AM
  • How can I add custom callvotes?
    For example there is 'set ctf "set g_gametype 3"' line in server config. I'd like to be able to callvote as non-privileged user something like "callvote vstr ctf". If there is no direct way, haxes and workarounds would be good too.
  • How can I change quad respawn time in tdm without writing my own patch?
  • How can I mute players?


Code:
    //The next three variables holds the allowed vote options, gametypes, and maps that can be voted for.
    //g_voteNames "/map_restart/nextmap/map/g_gametype/kick/clientkick/g_doWarmup/timelimit/fraglimit/"
    //g_voteGametypes "/0/1/3/4/5/6/7/8/9/10/11/12/"
    //g_voteMaps "/ctf_inyard/oa_ctf4ish/hydronex/oasago2/"
    //If you want to allow every vote option, all gametypes, and all the maps you can write it like this:
    //g_voteNames *
    //g_voteGametypes *
    //g_voteMaps *

from some example q3config.
i think that you can vote ctf like : /callvote g_gametype 3
but you have to callvote a map_restart to have effect.

This is not what you asked, but i thought for anybody else.