-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.py
75 lines (75 loc) · 1.04 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# =============================================================================
# Debugger config file
#
#
C = {}
#
#
# UDP socket debug enable/disable
# Default is False
C['SOCKET'] = True
#
#
# Server receiver address
# Default is localhost
C['SERVERHOST'] = 'localhost'
#
#
# Server receiver port
# Default is 8888
C['SERVERPORT'] = 8888
#
#
# Client send address
# Default is localhost
C['CLIENTHOST'] = 'localhost'
#
#
# Client send port
# Default is 8888
C['CLIENTPORT'] = 8888
#
#
# Use python cPickle lib for packing data in socket
# Default is False
C['PICKLE_DATA'] = False
#
#
# Use file logger
# Default is False
C['FILELOG'] = True
#
#
# Filename of the admin log file
# Default is "rr_mapscript.txt"
C['PATH_LOG_FILENAME'] = "objmodv2.log"
#
#
# Path relative to PR root (not mod root) of mapscript log file
# Default is "admin/logs"
C['PATH_LOG_DIRECTORY'] = "mods/pr_repo/python/game/objmodv2"
#
#
# Path relative to PR mod folder
# Default is "/settings/maplist.con"
C['PATH_MAPLIST'] = "settings/maplist.con"
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#