crxranks_get_setting
Returns a key value set in the [Settings] section in the plugin's configuration file.
Syntax
native bool:crxranks_get_setting(key[], value[], len) /** * Returns the client's HUD information. * * @param id Client index. * @param buffer Buffer to store the HUD information in. * @param len Maximum buffer length. * @noreturn */ native crxranks_get_user_hudinfo(id, buffer[], len) /** * Returns the client's current level. * * @param id Client index. * @return Client's current level. */ native crxranks_get_user_level(id) /** * Returns the client's next rank. * * @param id Client index. * @param buffer Buffer to store the rank name in. * @param len Maximum buffer length. * @noreturn */ native crxranks_get_user_next_rank(id, buffer[], len)
Usage
| key | Key to search for. |
| value | Buffer to store the value in. |
| len | Maximum buffer length. |
Return
True — if the key was found, false otherwise.
Defined in
crxranks.inc
at line 107
.
This documentation was automatically generated from source.