yapb-noob-edition/cfg/addons/yapb/conf/yapb.cfg

585 lines
13 KiB
INI
Raw Normal View History

2020-06-12 18:52:38 +03:00
//
// @package: YaPB
2023-01-28 18:58:00 +03:00
// @version: 4.3
// @author: YaPB Project
2020-06-12 18:52:38 +03:00
// @filename: yapb.cfg
//
// YaPB main configuration file. Can be executed via "exec" command.
2020-06-12 18:52:38 +03:00
//
//
// Enables or disables useful messages about bot states. Not required for end users.
2020-06-12 18:52:38 +03:00
// ---
// Default: "0", Min: "0", Max: "4"
//
yb_debug "0"
//
// Forces all alive bots to build path and go to the specified here graph node.
// ---
// Default: "-1", Min: "-1", Max: "2048"
//
yb_debug_goal "-1"
//
// Specifies the percent of bots, that can follow leader on each round start.
2020-06-12 18:52:38 +03:00
// ---
// Default: "20", Min: "0", Max: "100"
//
yb_user_follow_percent "20"
//
// Specifies how many bots can follow a single user.
// ---
// Default: "1", Min: "0", Max: "8"
2020-06-12 18:52:38 +03:00
//
yb_user_max_followers "1"
//
// If enabled, all bots will be forced only the knife, skipping weapon buying routines.
// ---
// Default: "0", Min: "0", Max: "1"
//
yb_jasonmode "0"
//
// Allows bots to use radio or chattter.
// Allowed values: '0', '1', '2'.
// If '0', radio and chatter is disabled.
// If '1', only radio allowed.
// If '2' chatter and radio allowed.
// ---
// Default: "2", Min: "0", Max: "2"
//
yb_radio_mode "2"
//
// Specifies whether bots able to use team economics, like do not buy any weapons for whole team to keep money for better guns.
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_economics_rounds "1"
//
// Allows bots to ignore economics and buy weapons with disrespect of economics.
// ---
// Default: "25", Min: "0", Max: "100"
//
yb_economics_disrespect_percent "25"
2020-06-12 18:52:38 +03:00
//
// Specifies whether bots able to use 'shift' if they thinks that enemy is near.
2020-06-12 18:52:38 +03:00
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_walking_allowed "1"
//
// Allows or disallows bots to camp. Doesn't affects bomb/hostage defending tasks.
2020-06-12 18:52:38 +03:00
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_camping_allowed "1"
//
// Allows bots to partially avoid grenades.
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_avoid_grenades "1"
//
// Allows or disallows bot to check environment for darkness, thus allows or not to use flashlights or NVG.
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_check_darkness "1"
//
// Lower bound of time from which time for camping is calculated
// ---
// Default: "15.0", Min: "5.0", Max: "90.0"
//
yb_camping_time_min "15.0"
//
// Upper bound of time until which time for camping is calculated
// ---
// Default: "45.0", Min: "15.0", Max: "120.0"
//
yb_camping_time_max "45.0"
2020-06-12 18:52:38 +03:00
//
// Allows or disallows bots to take revenge of teamkillers / team attacks.
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_tkpunish "1"
//
// If enabled, the bots think function is disabled, so bots will not move anywhere from their spawn spots.
2020-06-12 18:52:38 +03:00
// ---
// Default: "0", Min: "0", Max: "1"
//
yb_freeze_bots "0"
//
// Allows or disallows the use of spray paints.
2020-06-12 18:52:38 +03:00
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_spraypaints "1"
//
// Allows or disallows bots weapon buying routines.
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_botbuy "1"
//
2023-03-20 13:47:14 +00:00
// Allows bots to destroy breakables around them, even without touching with them.
2020-06-12 18:52:38 +03:00
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_destroy_breakables_around "1"
//
// The radius on which bot searches world for new objects, items, and weapons.
// ---
// Default: "450.0", Min: "64.0", Max: "1024.0"
//
yb_object_pickup_radius "450.0"
//
// The radius on which bot destroy breakables around it, when not touching with them.
// ---
// Default: "400.0", Min: "64.0", Max: "1024.0"
//
yb_object_destroy_radius "400.0"
2020-06-12 18:52:38 +03:00
//
// Specifies the paths for the bot chatter sound files.
// ---
// Default: "sound/radio/bot"
//
yb_chatter_path "sound/radio/bot"
//
// Specifies semicolon separated list of weapons that are not allowed to buy / pickup.
// ---
// Default: ""
//
yb_restricted_weapons ""
//
// Allows or disallows bots to attack monsters.
// ---
// Default: "0", Min: "0", Max: "1"
//
yb_attack_monsters "0"
//
// Allows or disallows bots to pickup custom items.
// ---
// Default: "0", Min: "0", Max: "1"
//
yb_pickup_custom_items "0"
//
// Allows or disallows bots to pickup best weapons.
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_pickup_best "1"
//
// Allows or disallows bots to do map objectives, i.e. plant/defuse bombs, and saves hostages.
// ---
// Default: "0", Min: "0", Max: "1"
//
yb_ignore_objectives "0"
//
// Allows or disallows the ability for random knife attacks when bot is rushing and no enemy is nearby.
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_random_knife_attacks "1"
//
// Maximum number for path length, to predict the enemy.
// ---
// Default: "30", Min: "15", Max: "256"
//
yb_max_nodes_for_predict "30"
2020-06-12 18:52:38 +03:00
//
// Enables or disables bots chat functionality.
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_chat "1"
//
// Bot chances to send random dead chat when killed.
// ---
// Default: "30", Min: "0", Max: "100"
//
yb_chat_percent "30"
2020-06-12 18:52:38 +03:00
//
// Specifies whether bots able to fire at enemies behind the wall, if they hearing or suspecting them.
// ---
// Default: "2", Min: "0", Max: "3"
2020-06-12 18:52:38 +03:00
//
yb_shoots_thru_walls "2"
//
// Enables or disables searching world for enemies.
// ---
// Default: "0", Min: "0", Max: "1"
//
yb_ignore_enemies "0"
//
// Enables or disables checking enemy rendering flags. Useful for some mods.
// ---
// Default: "0", Min: "0", Max: "1"
//
yb_check_enemy_rendering "0"
2020-12-03 14:37:21 +02:00
//
// Enables or disables checking enemy invincibility. Useful for some mods.
// ---
// Default: "0", Min: "0", Max: "1"
//
yb_check_enemy_invincibility "0"
2020-06-12 18:52:38 +03:00
//
// Enables or disables bot ability to stab the enemy with knife if bot is in good condition.
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_stab_close_enemies "1"
//
// Binds specified key for opening bots menu.
// ---
// Default: "="
//
yb_bind_menu_key "="
//
// Specifies comma separated list of bot cvars, that will not be overriten by config on changelevel.
// ---
// Default: "yb_quota,yb_autovacate"
//
yb_ignore_cvars_on_changelevel "yb_quota,yb_autovacate"
2020-06-12 18:52:38 +03:00
//
// Enables or disables display menu text, when players asks for menu. Useful only for Android.
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_display_menu_text "1"
//
// The value (password) for the setinfo key, if user sets correct password, he's gains access to bot commands and menus.
2020-06-12 18:52:38 +03:00
// ---
// Default: ""
//
yb_password ""
//
// The name of setinfo key used to store password to bot commands and menus.
2020-06-12 18:52:38 +03:00
// ---
// Default: "_ybpw"
//
yb_password_key "_ybpw"
//
// Enables or disables CSDM / FFA mode for bots.
// Allowed values: '0', '1', '2', '3'.
// If '0', CSDM / FFA mode is auto-detected.
// If '1', CSDM mode is enabled, but FFA is disabled.
// If '2', CSDM and FFA mode is enabled.
// If '3', CSDM and FFA mode is disabled.
2020-06-12 18:52:38 +03:00
// ---
// Default: "0", Min: "0", Max: "3"
//
yb_csdm_mode "0"
//
// Specifies the maximum health of breakable object, that bot will consider to destroy.
// ---
// Default: "500.0", Min: "1.0", Max: "3000.0"
//
yb_breakable_health_limit "500.0"
2020-06-12 18:52:38 +03:00
//
// Specifies whether bot should not 'fix' camp directions of camp waypoints when loading old PWF format.
// ---
// Default: "0", Min: "0", Max: "1"
2020-06-12 18:52:38 +03:00
//
yb_graph_fixcamp "0"
2020-06-12 18:52:38 +03:00
//
// Specifies the URL from bots will be able to download graph in case of missing local one. Set to empty, if no downloads needed.
2020-06-12 18:52:38 +03:00
// ---
// Default: "yapb.jeefo.net"
2020-06-12 18:52:38 +03:00
//
yb_graph_url "yapb-gcdn.akamaized.net"
//
// Every N graph nodes placed on map, the graph will be saved automatically (without checks).
// ---
// Default: "15", Min: "0", Max: "2048"
//
yb_graph_auto_save_count "15"
//
// Maximum distance to draw graph nodes from editor viewport.
// ---
// Default: "400", Min: "64", Max: "3072"
//
yb_graph_draw_distance "400"
2020-06-12 18:52:38 +03:00
//
// Kick bots to automatically make room for human players.
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_autovacate "1"
//
// Kick the bot immediately when a human player joins the server (yb_autovacate must be enabled).
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_kick_after_player_connect "1"
2020-06-12 18:52:38 +03:00
//
// Specifies the number bots to be added to the game.
// ---
// Default: "9", Min: "0", Max: "32"
2020-06-12 18:52:38 +03:00
//
yb_quota "9"
2020-06-12 18:52:38 +03:00
//
// Specifies the type of quota.
// Allowed values: 'normal', 'fill', and 'match'.
// If 'fill', the server will adjust bots to keep N players in the game, where N is yb_quota.
// If 'match', the server will maintain a 1:N ratio of humans to bots, where N is yb_quota_match.
2020-06-12 18:52:38 +03:00
// ---
// Default: "normal"
//
yb_quota_mode "normal"
//
// Number of players to match if yb_quota_mode set to 'match'
2020-06-12 18:52:38 +03:00
// ---
// Default: "0", Min: "0", Max: "32"
//
yb_quota_match "0"
//
// Specifies how many times per second bot code will run.
2020-06-12 18:52:38 +03:00
// ---
// Default: "26.0", Min: "24.0", Max: "90.0"
2020-06-12 18:52:38 +03:00
//
yb_think_fps "26.0"
2020-06-12 18:52:38 +03:00
//
// Specifies amount of time in seconds when bots will be killed if no humans left alive.
// ---
// Default: "0.0", Min: "0.0", Max: "90.0"
//
yb_autokill_delay "0.0"
//
// Specifies whether bots should join server, only when at least one human player in game.
2020-06-12 18:52:38 +03:00
// ---
// Default: "0", Min: "0", Max: "1"
//
yb_join_after_player "0"
//
// Forces all bots to join team specified here.
// ---
// Default: "any"
//
yb_join_team "any"
//
// Specifies after how many seconds bots should start to join the game after the changelevel.
// ---
// Default: "5.0", Min: "0.0", Max: "30.0"
//
yb_join_delay "5.0"
//
// All the bot names will be prefixed with string specified with this cvar.
// ---
// Default: ""
//
yb_name_prefix ""
//
// All bots difficulty level. Changing at runtime will affect already created bots.
2020-06-12 18:52:38 +03:00
// ---
// Default: "3", Min: "0", Max: "4"
2020-06-12 18:52:38 +03:00
//
yb_difficulty "3"
2020-06-12 18:52:38 +03:00
//
// Lower bound of random difficulty on bot creation. Only affects newly created bots. -1 means yb_difficulty only used.
// ---
// Default: "-1", Min: "-1", Max: "4"
//
yb_difficulty_min "-1"
//
// Upper bound of random difficulty on bot creation. Only affects newly created bots. -1 means yb_difficulty only used.
// ---
// Default: "-1", Min: "-1", Max: "4"
//
yb_difficulty_max "-1"
//
// Enables each bot balances own difficulty based kd-ratio of team.
// ---
// Default: "0", Min: "0", Max: "1"
//
yb_difficulty_auto "0"
2020-06-12 18:52:38 +03:00
//
// Enables or disables displaying bot avatars in front of their names in scoreboard. Note, that is currently you can see only avatars of your steam friends.
2020-06-12 18:52:38 +03:00
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_show_avatars "1"
//
// Enables latency display in scoreboard.
// Allowed values: '0', '1', '2'.
// If '0', there is nothing displayed.
// If '1', there is a 'BOT' is displayed.
// If '2' fake ping is displayed.
// ---
// Default: "2", Min: "0", Max: "2"
//
yb_show_latency "2"
//
// Allows to save bot names upon changelevel, so bot names will be the same after a map change.
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_save_bots_names "1"
2020-06-12 18:52:38 +03:00
//
// Specifies the bots wanted skin for Terrorist team.
2020-06-12 18:52:38 +03:00
// ---
// Default: "0", Min: "0", Max: "5"
2020-06-12 18:52:38 +03:00
//
yb_botskin_t "0"
2020-06-12 18:52:38 +03:00
//
// Specifies the bots wanted skin for CT team.
2020-06-12 18:52:38 +03:00
// ---
// Default: "0", Min: "0", Max: "5"
2020-06-12 18:52:38 +03:00
//
yb_botskin_ct "0"
//
// Lower bound for base bot ping shown in scoreboard upon creation.
// ---
// Default: "7", Min: "0", Max: "100"
//
yb_ping_base_min "7"
//
// Upper bound for base bot ping shown in scoreboard upon creation.
// ---
// Default: "34", Min: "0", Max: "100"
//
yb_ping_base_max "34"
//
// Interval in which bots are added to the game.
// ---
// Default: "0.1", Min: "0.1", Max: "1.0"
//
yb_quota_adding_interval "0.1"
//
// Interval on which overall bot quota are checked.
// ---
// Default: "0.4", Min: "0.4", Max: "2.0"
//
yb_quota_maintain_interval "0.4"
//
// Specifies the language for bot messages and menus.
// ---
// Default: "en"
//
yb_language "en"
2020-06-12 18:52:38 +03:00
//
// Randomly disconnect and connect bots, simulating players join/quit.
// ---
// Default: "0", Min: "0", Max: "1"
//
yb_rotate_bots "0"
//
// Specifies minimum amount of seconds bot keep connected, if rotation active.
// ---
// Default: "360.0", Min: "120.0", Max: "7200.0"
//
yb_rotate_stay_min "360.0"
//
// Specifies maximum amount of seconds bot keep connected, if rotation active.
// ---
// Default: "3600.0", Min: "1800.0", Max: "14400.0"
//
yb_rotate_stay_max "3600.0"
2020-06-12 18:52:38 +03:00
//
// Selects the heuristic function mode. For debug purposes only.
// ---
// Default: "4", Min: "0", Max: "4"
2020-06-12 18:52:38 +03:00
//
yb_path_heuristic_mode "4"
2020-06-12 18:52:38 +03:00
//
// Lower bound of danger factor that used to add additional danger to path based on practice.
2020-06-12 18:52:38 +03:00
// ---
// Default: "200", Min: "100", Max: "2400"
2020-06-12 18:52:38 +03:00
//
yb_path_danger_factor_min "200"
2020-06-12 18:52:38 +03:00
//
// Upper bound of danger factor that used to add additional danger to path based on practice.
2020-06-12 18:52:38 +03:00
// ---
// Default: "400", Min: "200", Max: "4800"
2020-06-12 18:52:38 +03:00
//
yb_path_danger_factor_max "400"
2020-06-12 18:52:38 +03:00
//
// Enables or disables showing welcome message to host entity on game start.
// ---
// Default: "1", Min: "0", Max: "1"
//
yb_display_welcome_text "1"
//
// Enables or disables fake server queries response, that shows bots as real players in server browser.
// ---
// Default: "0", Min: "0", Max: "1"
//
yb_enable_query_hook "0"