Инфо из amxmodx.inc:
/* Converts string to sum of bits.
* Example: "abcd" is a sum of 1, 2, 4 and 8. */
native read_flags(const flags[]);
Синтаксис:
read_flags(const flags[])
- const flags[] - Массив с флагами
Тип функции:
Native
Пример:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "[http://amxxmodx.ru] read_flags"
#define VERSION "1.0"
#define AUTHOR "Admin"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
new flags_num = read_flags("abc")
server_print("FLAGS NUM [%d]",flags_num)
}
Описание:
В примере, с помощью рассматриваемой функции, получается сумма битов флагов abc и выводится в консоль сервера.