native read_flags(const flags[]);
flags | Flag string to convert |
Converts a flag string to a bitflag value.
Example: The string "abcd" represents the sum of 1, 2, 4, and 8 - or (1<<0)|(1<<1)|(1<<2)|(1<<3). The function will return 15.
Bitflag value
This documentation was generated automatically using pawn-docgen written by xPaw for AlliedMods.