Hello Members AlliedModders,
Can anyone explain the use of the function:[B] if (has_flag (id, ""))
amxmisc.inc
Code:
/* Returns true if the user has ANY of the provided flags
* false if they have none
*/
stock has_flag(id, const flags[])
{
return (get_user_flags(id) & read_flags(flags));
}
Quote:
Originally Posted by . ThePro
Double Post, Sorry, I did not know the function of the "Quick List".