eltarkus
09-21-2003, 06:38 PM
Hi Im a noob !!lol
I want to run a dedicated server so, I followed a tutorial from this forum to edit the vote option.
this is my config"callvote" file:
// callvote options script
//-------------------------
// This is a server-side file that is used to specify what things can be voted for,
// and what the valid voting options for them are. The options clients are allowed
// to do a callvote on are determined by the settings in this file on the server.
// the format is as follows:
// "Option Name" "Command" <Type>
// {
// "Choice Name 1" "VoteString1"
// "Choice Name 2" "VoteString2"
// ...
// }
// "Option Name" is the name that will be displayed for that voting option.
// Command is the command that a change will be voted for.
// <Type> is an optional parameter specifying what kind of option it is
// Valid option types are:
// - "nochoices" : Provides no additional choices are info entry, it just is. (default)
// - "list" : Provides a list of choices for the option
// - "text" : Pops up a text entry window for the option
// - "integer" : Pops up an integer number entry window for the option
// - "float" : Pops up a floating point number entry window for the option
// - "client" : Pops up a list of players in the game for the option
// - "clientnotself" : Pops up a list of other players in the game for the option
// { and } specify the begining and end of a list of choices for a voting
// option. No list should be specified for any type besides list.
"Free-For-All Map" "g_gametype" list
{
"Bahnhof - dm/MP_Bahnhof_DM" "1; map dm/MP_Bahnhof_DM"
"Bazaar - dm/MP_Bazaar_DM" "1; map dm/MP_Bazaar_DM"
"Brest - dm/MP_Brest_DM" "1; map dm/MP_Brest_DM"
"Holland - dm/MP_Holland_DM" "1; map dm/MP_Holland_DM"
"Stadt - dm/MP_Stadt_DM" "1; map dm/MP_Stadt_DM"
"Gewitter - dm/MP_Gewitter_DM" "1; map dm/MP_Gewitter_DM"
"Unterseite - dm/MP_Unterseite_DM" "1; map dm/MP_Unterseite_DM"
"Verschneit - dm/MP_Verschneit_DM" "1; map dm/MP_Verschneit_DM"
"Southern France - dm/mohdm1" "1; map dm/mohdm1"
"Destroyed Village - dm/mohdm2" "1; map dm/mohdm2"
"Remagen - dm/mohdm3" "1; map dm/mohdm3"
"The Crossroads - dm/mohdm4" "1; map dm/mohdm4"
"Snowy Park - dm/mohdm5" "1; map dm/mohdm5"
"Stalingrad - dm/mohdm6" "1; map dm/mohdm6"
"Algiers - dm/mohdm7" "1; map dm/mohdm7"
"Ardennes - obj/MP_Ardennes_TOW" "1;map obj/MP_Ardennes_TOW"
"Berlin - obj/MP_Berlin_TOW" "1;map obj/MP_Berlin_TOW"
"Druckkammern - obj/MP_Druckkammern_TOW" "1;map obj/MP_Druckkammern_TOW"
"Flughafen - obj/MP_Flughafen_TOW" "1;map obj/MP_Flughafen_TOW"
}
"Team-Match Map" "g_gametype" list
{
"Bahnhof - dm/MP_Bahnhof_DM" "2; map dm/MP_Bahnhof_DM"
"Bazaar - dm/MP_Bazaar_DM" "2; map dm/MP_Bazaar_DM"
"Brest - dm/MP_Brest_DM" "2; map dm/MP_Brest_DM"
"Holland - dm/MP_Holland_DM" "2; map dm/MP_Holland_DM"
"Stadt - dm/MP_Stadt_DM" "2; map dm/MP_Stadt_DM"
"Gewitter - dm/MP_Gewitter_DM" "2; map dm/MP_Gewitter_DM"
"Unterseite - dm/MP_Unterseite_DM" "2; map dm/MP_Unterseite_DM"
"Verschneit - dm/MP_Verschneit_DM" "2; map dm/MP_Verschneit_DM"
"Southern France - dm/mohdm1" "2; map dm/mohdm1"
"Destroyed Village - dm/mohdm2" "2; map dm/mohdm2"
"Remagen - dm/mohdm3" "2; map dm/mohdm3"
"The Crossroads - dm/mohdm4" "2; map dm/mohdm4"
"Snowy Park - dm/mohdm5" "2; map dm/mohdm5"
"Stalingrad - dm/mohdm6" "2; map dm/mohdm6"
"Algiers - dm/mohdm7" "2; map dm/mohdm7"
"Ardennes - obj/MP_Ardennes_TOW" "2;map obj/MP_Ardennes_TOW"
"Berlin - obj/MP_Berlin_TOW" "2;map obj/MP_Berlin_TOW"
"Druckkammern - obj/MP_Druckkammern_TOW" "2;map obj/MP_Druckkammern_TOW"
"Flughafen - obj/MP_Flughafen_TOW" "2;map obj/MP_Flughafen_TOW"
}
"Round-Based-Match Map" "g_gametype" list
{
"Bahnhof - dm/MP_Bahnhof_DM" "3; map dm/MP_Bahnhof_DM"
"Bazaar - dm/MP_Bazaar_DM" "3; map dm/MP_Bazaar_DM"
"Brest - dm/MP_Brest_DM" "3; map dm/MP_Brest_DM"
"Holland - dm/MP_Holland_DM" "3; map dm/MP_Holland_DM"
"Stadt - dm/MP_Stadt_DM" "3; map dm/MP_Stadt_DM"
"Gewitter - dm/MP_Gewitter_DM" "3; map dm/MP_Gewitter_DM"
"Unterseite - dm/MP_Unterseite_DM" "3; map dm/MP_Unterseite_DM"
"Verschneit - dm/MP_Verschneit_DM" "3; map dm/MP_Verschneit_DM"
"Southern France - dm/mohdm1" "3; map dm/mohdm1"
"Destroyed Village - dm/mohdm2" "3; map dm/mohdm2"
"Remagen - dm/mohdm3" "3; map dm/mohdm3"
"The Crossroads - dm/mohdm4" "3; map dm/mohdm4"
"Snowy Park - dm/mohdm5" "3; map dm/mohdm5"
"Stalingrad - dm/mohdm6" "3; map dm/mohdm6"
"Algiers - dm/mohdm7" "3; map dm/mohdm7"
"Ardennes - obj/MP_Ardennes_TOW" "3;map obj/MP_Ardennes_TOW"
"Berlin - obj/MP_Berlin_TOW" "3;map obj/MP_Berlin_TOW"
"Druckkammern - obj/MP_Druckkammern_TOW" "3;map obj/MP_Druckkammern_TOW"
"Flughafen - obj/MP_Flughafen_TOW" "3;map obj/MP_Flughafen_TOW"
}
// Loads an objective map and makes sure the game is in objective mode
"Objective Map" "g_gametype" list
{
"The Hunt - obj/obj_team1" "4;map obj/obj_team1"
"V2 Rocket Facility - obj/obj_team2" "4;map obj/obj_team2"
"Omaha Beach - obj/obj_team3" "4;map obj/obj_team3"
"The Bridge - obj/obj_team4" "4;map obj/obj_team4"
}
// Loads an objective map and makes sure the game is in objective mode
"Tug-of-War Map" "g_gametype" list
{
"Ardennes - obj/MP_Ardennes_TOW" "5;map obj/MP_Ardennes_TOW"
"Berlin - obj/MP_Berlin_TOW" "5;map obj/MP_Berlin_TOW"
"Druckkammern - obj/MP_Druckkammern_TOW" "5;map obj/MP_Druckkammern_TOW"
"Flughafen - obj/MP_Flughafen_TOW" "5;map obj/MP_Flughafen_TOW"
}
I tried replacing the original with this one it didint work, I then made a pk3 file and place it in my mainta but it still didint work. All the option are still in the vote menu. I want to have only the map options in the vote =menu. What am i doing wrong???
Thanks! a lot
eltarkus
I want to run a dedicated server so, I followed a tutorial from this forum to edit the vote option.
this is my config"callvote" file:
// callvote options script
//-------------------------
// This is a server-side file that is used to specify what things can be voted for,
// and what the valid voting options for them are. The options clients are allowed
// to do a callvote on are determined by the settings in this file on the server.
// the format is as follows:
// "Option Name" "Command" <Type>
// {
// "Choice Name 1" "VoteString1"
// "Choice Name 2" "VoteString2"
// ...
// }
// "Option Name" is the name that will be displayed for that voting option.
// Command is the command that a change will be voted for.
// <Type> is an optional parameter specifying what kind of option it is
// Valid option types are:
// - "nochoices" : Provides no additional choices are info entry, it just is. (default)
// - "list" : Provides a list of choices for the option
// - "text" : Pops up a text entry window for the option
// - "integer" : Pops up an integer number entry window for the option
// - "float" : Pops up a floating point number entry window for the option
// - "client" : Pops up a list of players in the game for the option
// - "clientnotself" : Pops up a list of other players in the game for the option
// { and } specify the begining and end of a list of choices for a voting
// option. No list should be specified for any type besides list.
"Free-For-All Map" "g_gametype" list
{
"Bahnhof - dm/MP_Bahnhof_DM" "1; map dm/MP_Bahnhof_DM"
"Bazaar - dm/MP_Bazaar_DM" "1; map dm/MP_Bazaar_DM"
"Brest - dm/MP_Brest_DM" "1; map dm/MP_Brest_DM"
"Holland - dm/MP_Holland_DM" "1; map dm/MP_Holland_DM"
"Stadt - dm/MP_Stadt_DM" "1; map dm/MP_Stadt_DM"
"Gewitter - dm/MP_Gewitter_DM" "1; map dm/MP_Gewitter_DM"
"Unterseite - dm/MP_Unterseite_DM" "1; map dm/MP_Unterseite_DM"
"Verschneit - dm/MP_Verschneit_DM" "1; map dm/MP_Verschneit_DM"
"Southern France - dm/mohdm1" "1; map dm/mohdm1"
"Destroyed Village - dm/mohdm2" "1; map dm/mohdm2"
"Remagen - dm/mohdm3" "1; map dm/mohdm3"
"The Crossroads - dm/mohdm4" "1; map dm/mohdm4"
"Snowy Park - dm/mohdm5" "1; map dm/mohdm5"
"Stalingrad - dm/mohdm6" "1; map dm/mohdm6"
"Algiers - dm/mohdm7" "1; map dm/mohdm7"
"Ardennes - obj/MP_Ardennes_TOW" "1;map obj/MP_Ardennes_TOW"
"Berlin - obj/MP_Berlin_TOW" "1;map obj/MP_Berlin_TOW"
"Druckkammern - obj/MP_Druckkammern_TOW" "1;map obj/MP_Druckkammern_TOW"
"Flughafen - obj/MP_Flughafen_TOW" "1;map obj/MP_Flughafen_TOW"
}
"Team-Match Map" "g_gametype" list
{
"Bahnhof - dm/MP_Bahnhof_DM" "2; map dm/MP_Bahnhof_DM"
"Bazaar - dm/MP_Bazaar_DM" "2; map dm/MP_Bazaar_DM"
"Brest - dm/MP_Brest_DM" "2; map dm/MP_Brest_DM"
"Holland - dm/MP_Holland_DM" "2; map dm/MP_Holland_DM"
"Stadt - dm/MP_Stadt_DM" "2; map dm/MP_Stadt_DM"
"Gewitter - dm/MP_Gewitter_DM" "2; map dm/MP_Gewitter_DM"
"Unterseite - dm/MP_Unterseite_DM" "2; map dm/MP_Unterseite_DM"
"Verschneit - dm/MP_Verschneit_DM" "2; map dm/MP_Verschneit_DM"
"Southern France - dm/mohdm1" "2; map dm/mohdm1"
"Destroyed Village - dm/mohdm2" "2; map dm/mohdm2"
"Remagen - dm/mohdm3" "2; map dm/mohdm3"
"The Crossroads - dm/mohdm4" "2; map dm/mohdm4"
"Snowy Park - dm/mohdm5" "2; map dm/mohdm5"
"Stalingrad - dm/mohdm6" "2; map dm/mohdm6"
"Algiers - dm/mohdm7" "2; map dm/mohdm7"
"Ardennes - obj/MP_Ardennes_TOW" "2;map obj/MP_Ardennes_TOW"
"Berlin - obj/MP_Berlin_TOW" "2;map obj/MP_Berlin_TOW"
"Druckkammern - obj/MP_Druckkammern_TOW" "2;map obj/MP_Druckkammern_TOW"
"Flughafen - obj/MP_Flughafen_TOW" "2;map obj/MP_Flughafen_TOW"
}
"Round-Based-Match Map" "g_gametype" list
{
"Bahnhof - dm/MP_Bahnhof_DM" "3; map dm/MP_Bahnhof_DM"
"Bazaar - dm/MP_Bazaar_DM" "3; map dm/MP_Bazaar_DM"
"Brest - dm/MP_Brest_DM" "3; map dm/MP_Brest_DM"
"Holland - dm/MP_Holland_DM" "3; map dm/MP_Holland_DM"
"Stadt - dm/MP_Stadt_DM" "3; map dm/MP_Stadt_DM"
"Gewitter - dm/MP_Gewitter_DM" "3; map dm/MP_Gewitter_DM"
"Unterseite - dm/MP_Unterseite_DM" "3; map dm/MP_Unterseite_DM"
"Verschneit - dm/MP_Verschneit_DM" "3; map dm/MP_Verschneit_DM"
"Southern France - dm/mohdm1" "3; map dm/mohdm1"
"Destroyed Village - dm/mohdm2" "3; map dm/mohdm2"
"Remagen - dm/mohdm3" "3; map dm/mohdm3"
"The Crossroads - dm/mohdm4" "3; map dm/mohdm4"
"Snowy Park - dm/mohdm5" "3; map dm/mohdm5"
"Stalingrad - dm/mohdm6" "3; map dm/mohdm6"
"Algiers - dm/mohdm7" "3; map dm/mohdm7"
"Ardennes - obj/MP_Ardennes_TOW" "3;map obj/MP_Ardennes_TOW"
"Berlin - obj/MP_Berlin_TOW" "3;map obj/MP_Berlin_TOW"
"Druckkammern - obj/MP_Druckkammern_TOW" "3;map obj/MP_Druckkammern_TOW"
"Flughafen - obj/MP_Flughafen_TOW" "3;map obj/MP_Flughafen_TOW"
}
// Loads an objective map and makes sure the game is in objective mode
"Objective Map" "g_gametype" list
{
"The Hunt - obj/obj_team1" "4;map obj/obj_team1"
"V2 Rocket Facility - obj/obj_team2" "4;map obj/obj_team2"
"Omaha Beach - obj/obj_team3" "4;map obj/obj_team3"
"The Bridge - obj/obj_team4" "4;map obj/obj_team4"
}
// Loads an objective map and makes sure the game is in objective mode
"Tug-of-War Map" "g_gametype" list
{
"Ardennes - obj/MP_Ardennes_TOW" "5;map obj/MP_Ardennes_TOW"
"Berlin - obj/MP_Berlin_TOW" "5;map obj/MP_Berlin_TOW"
"Druckkammern - obj/MP_Druckkammern_TOW" "5;map obj/MP_Druckkammern_TOW"
"Flughafen - obj/MP_Flughafen_TOW" "5;map obj/MP_Flughafen_TOW"
}
I tried replacing the original with this one it didint work, I then made a pk3 file and place it in my mainta but it still didint work. All the option are still in the vote menu. I want to have only the map options in the vote =menu. What am i doing wrong???
Thanks! a lot
eltarkus