HLRS (Half-Life Rank System) — это плагин , который добавит вам на сервер систему прокачки рангов , при этом с каждым новым званием у вас будет появляться новое оружие при спавне.
Автор — BIGs
Актуальная версия — 1.2.93
Если вы найдете баг , просьба написать о нем в комментариях или на (admin@hl-hev.ru)
Версии :
[1.2.78]
- Релиз.
[1.2.93]
-
[Turanga_Leela] — облегчение блоков кода.
-
Легкие исправления в плане стабильности и размера плагина.
[1.3.16]
-
Был исправлен баг , теперь плагин работает стабильно , но API временно отсутствует.
[collapse]
Помощь
Thanks :
D-AIRY[Ds-Servers.com] — Help in adjusting the code.
Turanga_Leela[aghl.ru] — Help in adjusting the code and testing.
TEPA6ANT[HL-HEV Team] — Help in testing the plugin.
[collapse]
Помощь
Thanks :
D-AIRY[Ds-Servers.com] — Help in adjusting the code.
Turanga_Leela[aghl.ru] — Help in adjusting the code and testing.
TEPA6ANT[HL-HEV Team] — Help in testing the plugin.
[collapse]
Список рангов :
-
0 — Soldier.
-
50 — Sergeant.
-
300 — Officer.
-
500 — Captain.
-
1000 — Major.
-
2000 — Colonel.
-
3500 — General.
-
5000 — Genegalisimus.
-
10000 — God of Half-Life.
Для того чтобы обнулить счет нужно написать в чат или консоль /rs (Эта команда регулируется в настройках плагина.)
Cvars/Квары
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
//Config to <Half-Life Rank System> //Turn on the issue of weapons when the rank is reached? //Включить выдачу оружия при достижении нового ранга? //1-Enabled | 0 - Disabled ::: Default - 1 hlrs_weapons 1 //Enable the cancellation of the score? //Включить возможность аннуляции score? //1-Enabled | 0 - Disabled ::: Default - 1 hlrs_rs 1 //Color of HUD //Red - 0 //Green - 255 //Blue - 0 hlrs_hud_r 0 hlrs_hud_g 255 hlrs_hud_b 0 |
[collapse]
Так же у плагина есть API
hlrs.inc
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
/* Includes from Half-Life Rank System Author - BIGs Site - https://hl-hev.ru/ */ #if defined _hlrs_included #endinput #endif #define _hlrs_included //Function set score by StaemID /* @params score - string. steamid - string. */ native hlrs_set_score(steamid [],score[]); //Function return score by StaemID /* @params steamid - string. */ native hlrs_get_score(steamid[]); //Function return rank /* @params score - integer; */ native hlrs_get_user_rank(score); |
[collapse]