You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
906 B
33 lines
906 B
# All the tags and there human readable name |
|
TAGS = {'taghash1': 'tree', |
|
'taghash2': 'toilet', |
|
'taghash3': 'tent', |
|
'taghash4': 'water tap' |
|
} |
|
|
|
# Key for starting as a new user. |
|
# http://<server>/newuser/<key> |
|
# If not used, please use 'None'. |
|
# START_KEY = 'secretstartkey' |
|
START_KEY = 'None |
|
|
|
# Max time of the game in seconds |
|
MAX_TIME = '3600' |
|
|
|
# Time the players will be shown on the overview after there playtime is over |
|
SHOW_TIME = '120' |
|
|
|
# Refresh time for the scoreboard and highscore pages |
|
REFRESH_TIME = '10' |
|
|
|
# Shortview. If you got to many tags on the score board, show only the amount |
|
# of tags the player has scored. |
|
SHORT_VIEW = 'false' |
|
|
|
# HTML text for the registration page: |
|
REGISTRATION_DESK = 'You can find the registration desk in the center.' |
|
|
|
# For storing the cookie information to the client |
|
SECRET_KEY = 'Very secret key!' |
|
|
|
ADMIN_PASSWORD = 'changeme!'
|
|
|