.BANCHO. .FIX. Fix mod rank login error, add exception output at login, add some modules
This commit is contained in:
0
constants/__init__.py
Normal file
0
constants/__init__.py
Normal file
17
constants/actions.py
Normal file
17
constants/actions.py
Normal file
@@ -0,0 +1,17 @@
|
||||
"""Contains user actions"""
|
||||
#TODO: Uppercase
|
||||
idle = 0
|
||||
afk = 1
|
||||
playing = 2
|
||||
editing = 3
|
||||
modding = 4
|
||||
multiplayer = 5
|
||||
watching = 6
|
||||
unknown = 7
|
||||
testing = 8
|
||||
submitting = 9
|
||||
paused = 10
|
||||
lobby = 11
|
||||
multiplaying= 12
|
||||
osuDirect = 13
|
||||
none = 14
|
9
constants/bcolors.py
Normal file
9
constants/bcolors.py
Normal file
@@ -0,0 +1,9 @@
|
||||
"""Console colors"""
|
||||
PINK = '\033[95m'
|
||||
BLUE = '\033[94m'
|
||||
GREEN = '\033[92m'
|
||||
YELLOW = '\033[93m'
|
||||
RED = '\033[91m'
|
||||
ENDC = '\033[0m'
|
||||
BOLD = '\033[1m'
|
||||
UNDERLINE = '\033[4m'
|
30
constants/mods.py
Normal file
30
constants/mods.py
Normal file
@@ -0,0 +1,30 @@
|
||||
Nomod = 0
|
||||
NoFail = 1
|
||||
Easy = 2
|
||||
NoVideo = 4
|
||||
Hidden = 8
|
||||
HardRock = 16
|
||||
SuddenDeath = 32
|
||||
DoubleTime = 64
|
||||
Relax = 128
|
||||
HalfTime = 256
|
||||
Nightcore = 512
|
||||
Flashlight = 1024
|
||||
Autoplay = 2048
|
||||
SpunOut = 4096
|
||||
Relax2 = 8192
|
||||
Perfect = 16384
|
||||
Key4 = 32768
|
||||
Key5 = 65536
|
||||
Key6 = 131072
|
||||
Key7 = 262144
|
||||
Key8 = 524288
|
||||
keyMod = 1015808
|
||||
FadeIn = 1048576
|
||||
Random = 2097152
|
||||
LastMod = 4194304
|
||||
Key9 = 16777216
|
||||
Key10 = 33554432
|
||||
Key1 = 67108864
|
||||
Key3 = 134217728
|
||||
Key2 = 268435456
|
Reference in New Issue
Block a user