31 lines
702 B
Go
31 lines
702 B
Go
package sign
|
|
|
|
// Sign type constants
|
|
const (
|
|
SignTypeGeneric = 0
|
|
SignTypeZone = 1
|
|
)
|
|
|
|
// Default spawn settings for signs
|
|
const (
|
|
DefaultSpawnType = 2 // Signs are spawn type 2
|
|
DefaultActivityStatus = 64 // Activity status for signs
|
|
DefaultPosState = 1 // Position state
|
|
DefaultDifficulty = 0 // No difficulty for signs
|
|
)
|
|
|
|
// Channel colors for messages (these would be defined elsewhere in a real implementation)
|
|
const (
|
|
ChannelColorYellow = 15 // Yellow text channel
|
|
)
|
|
|
|
// Sign database constants
|
|
const (
|
|
MaxSignTitleLength = 255
|
|
MaxSignDescriptionLength = 1024
|
|
)
|
|
|
|
// Distance checking constants
|
|
const (
|
|
DefaultSignDistance = 0.0 // 0 = no distance limit
|
|
) |