mirror of
https://github.com/MikaylaFischler/cc-mek-scada.git
synced 2024-08-30 18:22:34 +00:00
15 lines
395 B
Lua
15 lines
395 B
Lua
-- set to false to run in offline mode (safety regulation only)
|
|
NETWORKED = true
|
|
-- unique reactor ID
|
|
REACTOR_ID = 1
|
|
-- port to send packets TO server
|
|
SERVER_PORT = 16000
|
|
-- port to listen to incoming packets FROM server
|
|
LISTEN_PORT = 14001
|
|
-- 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
|