Current version
1.2b (09/07/2016)
Authorship OverGame (OGQH)
Description
This plug-in adds to your server system of titles and nicknames for players. It diversifies the game and allow to climb above the stage.
Such diversity is very popular in the CIS countries.
Cvars
Quote:
jbr_give_flag "t" ;Flag of access, for the issue of a free experience.
jbr_give_count_te "3" ;How to give the player the experience of the privileges (Prisoners)
jbr_give_count_ct "3" ;How to give the player the experience of the privileges (Security)
jbr_give_stand_te "1" ;How to give experience for the murder? (Prisoners)
jbr_give_stand_ct "1" ;How to give experience for the murder? (Security)
jbr_give_head_te "2" ;How to give experience for the murder of the head? (Prisoners)
jbr_give_head_ct "2" ;How to give experience for the murder of the head? (Security)
jbr_max_level_te "10" ;The maximum rank for prisoners.
jbr_max_level_ct "10" ;The maximum rank for protection.
|
Natives
Code:
#if defined _jbe_ranks_included
#endinput
#endif
#define _jbe_ranks_included
enum JBR_PARAM_TYPE {
PARAM_GET = 0,
PARAM_SET = 1,
PARAM_ADD = 2,
PARAM_MIN = 3
};
enum JBR_TEAM_TYPE {
TEAM_ALL = 0,
TEAM_TE = 1,
TEAM_CT = 2
};
native jbr_user_exp(id, JBR_PARAM_TYPE:type, JBR_TEAM_TYPE:team, count = 0, message = false);
native jbr_user_level(id, JBR_PARAM_TYPE:type, JBR_TEAM_TYPE:team, count = 0);
native jbr_user_rankname(const buffer[], len, id);