crxranks_get_hudinfo_format

Returns the HUD info format set in the plugin's configuration file.

Syntax

native crxranks_get_hudinfo_format(bool:final, buffer[], len) /** * Returns the number of available levels. * * @return Number of available levels. */ native crxranks_get_max_levels() /** * Searches for a rank name by a specific level number. * * @param level Level number. * @param buffer Buffer to store the rank name in. * @param len Maximum buffer length. * @return 0 if the level number is out of range, 1 otherwise. */ native crxranks_get_rank_by_level(level, buffer[], len) /** * Returns the data saving type set in the plugin's configuration file. * * @note You can use the constants CRXRANKS_ST_NICKNAME, CRXRANKS_ST_IP * and CRXRANKS_ST_STEAMID instead of numbers. * * @return 0 if it's set to nickname, 1 for IP and 2 for SteamID. */ native CRXRanks_SaveTypes:crxranks_get_save_type() /**

Usage

final If true, it will get the HUD_FORMAT_FINAL settings, otherwise HUD_FORMAT if false.
buffer Buffer to store the HUD info format in.
len Maximum buffer length.

Return

This function has no return value.

Defined in crxranks.inc at line 70 . This documentation was automatically generated from source.