2022-04-21 16:40:21 +00:00
|
|
|
-- set to false to run in offline mode (safety regulation only)
|
2022-04-05 19:56:48 +00:00
|
|
|
NETWORKED = true
|
2022-01-02 00:45:33 +00:00
|
|
|
-- unique reactor ID
|
|
|
|
REACTOR_ID = 1
|
|
|
|
-- port to send packets TO server
|
2022-01-13 15:06:55 +00:00
|
|
|
SERVER_PORT = 16000
|
2022-01-02 00:45:33 +00:00
|
|
|
-- port to listen to incoming packets FROM server
|
2022-01-13 15:06:55 +00:00
|
|
|
LISTEN_PORT = 14001
|
2022-04-29 17:36:00 +00:00
|
|
|
-- log path
|
|
|
|
LOG_PATH = "/log.txt"
|
|
|
|
-- log mode
|
|
|
|
-- 0 = APPEND (adds to existing file on start)
|
|
|
|
-- 1 = NEW (replaces existing file on start)
|
|
|
|
LOG_MODE = 0
|