Quote:
Originally Posted by OciXCrom
You can simply do this and you won't have to worry about it being transfered on another player:
Code:
g_IsPlayerVIP[id] = bool:(get_user_flags(id) & ADMIN_LEVEL_H)
|
The point of caching in a variable is to not have to call a native every time you need to check the value. But yes, this is a solution and the native is not expensive to call when needed.
__________________