]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Set up duel for inclusion in the gametype voting screen as a custom option
authorMattia Basaglia <mattia.basaglia@gmail.com>
Thu, 9 Jul 2015 11:02:37 +0000 (13:02 +0200)
committerMattia Basaglia <mattia.basaglia@gmail.com>
Thu, 9 Jul 2015 11:02:37 +0000 (13:02 +0200)
gamemodes.cfg

index b6cbe92cfcba116c79de77e667e30d35d2c6601a..d660aa123aecfcca782679a62cace4864842fb23 100644 (file)
@@ -66,8 +66,11 @@ alias sv_hook_gameend
 // =====================
 //  gametype vote hooks
 // =====================
-// these are called when the mode is switched via gametype vote screen, earlier than gamestart hooks (useful for enabling per-gamemode mutators)
-alias sv_vote_gametype_hook_all 
+// These are called when the mode is switched via gametype vote screen,
+// earlier than gamestart hooks (useful for enabling per-gamemode mutators)
+// The _all hook is called before the specific one
+// here it sets g_maxplayers to undo what duel does
+alias sv_vote_gametype_hook_all "set g_maxplayers 0"
 alias sv_vote_gametype_hook_as
 alias sv_vote_gametype_hook_ca
 alias sv_vote_gametype_hook_ctf
@@ -84,6 +87,15 @@ alias sv_vote_gametype_hook_ons
 alias sv_vote_gametype_hook_rc
 alias sv_vote_gametype_hook_tdm
 
+// Preset to allow duel to be used for the gametype voting screen
+// sv_vote_gametype_*_type Must be set to the name of the gametype the option is based on
+// sv_vote_gametype_*_name Contains a human-readable name of the gametype
+// sv_vote_gametype_*_description Contains a longer description
+set sv_vote_gametype_duel_type dm
+set sv_vote_gametype_duel_name Duel
+set sv_vote_gametype_duel_description "One vs One match"
+alias sv_vote_gametype_hook_duel "set g_maxplayers 2"
+
 
 // ===========
 //  leadlimit