crxranks_get_final_flags

Returns the flags that clients will receive when they reach the final level.

Syntax

native crxranks_get_final_flags(buffer[] = "", len = 0) /** * Returns the HUD info format set in the plugin's configuration file. * * @param final If true, it will get the HUD_FORMAT_FINAL settings, otherwise HUD_FORMAT if false. * @param buffer Buffer to store the HUD info format in. * @param len Maximum buffer length. * @noreturn */ 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) /**

Usage

buffer Buffer to store the flags in.
len Maximum buffer length.

Return

Flags — as bit value.

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