mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-26 01:11:54 +00:00
* Handlers converted, now to fix 3532 compile errors * 3532 compile fixes later, got runtimes on startup * Well the server loads now atleast * Take 2 * Oops
13 lines
589 B
Plaintext
13 lines
589 B
Plaintext
// All global vars in this file require a different handler as we dont want their data to be exposed, not even to admins with permission to view globals
|
|
// They write as native BYOND globals, which means they cant be edited at all, and also use a format
|
|
// Please only throw absolutely crucial do-not-view shit in here please. -aa07
|
|
|
|
// MySQL configuration
|
|
GLOBAL_REAL_VAR(sqladdress) = "localhost"
|
|
GLOBAL_REAL_VAR(sqlport) = "3306"
|
|
GLOBAL_REAL_VAR(sqlfdbkdb) = "test"
|
|
GLOBAL_REAL_VAR(sqlfdbklogin) = "root"
|
|
GLOBAL_REAL_VAR(sqlfdbkpass) = ""
|
|
GLOBAL_REAL_VAR(sqlfdbktableprefix) = "erro_"
|
|
|