14-09-2008, 12:17 AM
Lea Wrote:Then you should add an ADMIN_VIP constant and use that, too
And don't assume everywhere uses the constants. Personally check every one yourself.
like this:
Code:
' Admin constants
Public Const ADMIN_VIP As Byte = 1
Public Const ADMIN_MONITER As Byte = 2
Public Const ADMIN_MAPPER As Byte = 3
Public Const ADMIN_DEVELOPER As Byte = 4
Public Const ADMIN_CREATOR As Byte = 5
Robin Wrote:That is a number.
Go into modConstants. You've just saved the number as a constant value with a useful name.
I'm starting to get things. So basically that string just represents the integer 1?