-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from Giferns/better-ml
Better ML
- Loading branch information
Showing
6 changed files
with
571 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,48 @@ | ||
// Конфиг плагина '[HN] SpawnEquip GameCMS' by mx?! (файл плагина hn_spawnequip_gamecms.amxx) | ||
// Данный конфиг позволяет настроить выдачу лечебной гранаты при спавне, по услугам GameCMS | ||
// Для работы требуется плагин "GameCMS API" | ||
// | ||
// Config of plugin '[HN] SpawnEquip GameCMS' by mx?! (plugin file hn_spawnequip_gamecms.amxx) | ||
// This config allows you to configure the issuance of a healing grenade upon spawn, according to GameCMS services | ||
// The "GameCMS API" plugin is required for operation | ||
|
||
// Включить выдачу (1 - да; 0 - нет) ? | ||
// | ||
// Enable output (1 - yes; 0 - no) ? | ||
hn_gamecms_equip_enabled "1" | ||
|
||
// Задержка выдачи после спавна (задайте 1.0 или больше, если другой плагин отбирает выданную гранату) | ||
// | ||
// Delay of distribution after spawn (set to 1.0 or more if another plugin takes away the distributed grenade) | ||
hn_gcms_autoequip_delay "0.0" | ||
|
||
// Выдавать гранату в случае, если игрок спавнится повторно в течение одного раунда (1 - да; 0 - нет) ? | ||
// | ||
// Give a grenade if the player respawns during the same round (1 - yes; 0 - no) ? | ||
hn_gcms_each_spawn "0" | ||
|
||
// Не выдавать гранату чаще одного раза в # секунд (0 - без лимита) | ||
// | ||
// Do not issue a grenade more than once every # seconds (0 - no limit) | ||
hn_gcms_autoequip_cooldown "0" | ||
|
||
// При значении 0 "мин. раунд для выдачи" выполняет одноимённую функцию | ||
// При значении 1 выполняет функцию "секунд с начала карты" | ||
// При значении 2 выполняет функцию "секунд с начала раунда" | ||
// | ||
// If set to 0, "min. round for issuing" performs the function of the same name | ||
// If set to 1, performs the function "seconds since map start" | ||
// If set to 2, performs the function "seconds since round start" | ||
hn_min_mode "0" | ||
|
||
// Настройка выдачи по услугам GameCMS | ||
// Можно добавить столько вариантов, сколько вам нужно | ||
// Формат: hn_gcms_reg_flag "услуга" "мин. раунд для выдачи" "сколько штук выдавать" | ||
// Пример: hn_gcms_reg_flag "_healthnade" "1" "1" | ||
// Внимание! Располагайте флаги согласно порядку убывания. Перебор идёт сверху вниз, т.е. флаги, стоящие выше, имеют приоритет! | ||
|
||
// | ||
// Setting up the issuance of GameCMS services | ||
// You can add as many options as you need | ||
// Format: hn_gcms_reg_flag "service" "min. round for issuance" "how many pieces to issue" | ||
// Example: hn_gcms_reg_flag "_healthnade" "1" "1" | ||
// Attention! Arrange the flags in descending order. The enumeration goes from top to bottom, i.e. the flags that are higher have priority! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
// Конфиг с настройкой доступа плагина '[HN] SpawnEquip SteamID' для выдачи шприца при спавне игрока, по SteamID | ||
// Config with access settings for the plugin '[HN] SpawnEquip SteamID' to issue a syringe when a player spawns, by SteamID | ||
|
||
// Формат: "steamid" "мин. раунд для выдачи" "сколько раз за раунд" "hp при выпивании" "hp при броске" "радиус лечения" "дата окончания в формате 'день.месяц.год'" | ||
// Пример: "STEAM_0:0:123456" "1" "1" "60" "40" "300.0" "20.06.2026" | ||
// | ||
// Format: "steamid" "min. round to give" "how many times per round" "hp when drinking" "hp when throwing" "radius of healing" "end date in 'day.month.year' format" | ||
// Example: "STEAM_0:0:123456" "1" "1" "60" "40" "300.0" "20.06.2026" | ||
|
||
"STEAM_0:0:123456" "1" "1" "60" "40" "300.0" "20.06.2026" |
Oops, something went wrong.