mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-20 15:21:29 +00:00
* SQL Validation, the first of many * Initial test of the world loading * This was prefixed when it shouldnt have been :v * This also isnt a valid table * Escape time * Chmod * This **should** work * Oops * RUST gone bust * Please work * Why did I do this twice * I think I got it * Fixes AFK SS * AAAAAAAAAAAAAAAAAAAAAA * Fixes AI cam runtime * Cleanup * *screams* * Fare fixes * Removes un-needed stuff * I hope this works * chmoooood * SQL Version Unit Test * Failure test * Kinda ironic how I forgot this * Task failed successfully * Moves a global var around * Bump SQL version in travis * New test: SQL example DBconfig update * Lets test an invalid version * TASK FAILED SUCCESSFULLY * Programmatic maplist generation * Removes a duplicate check * Lets try this * What about this * hnnng * Lets just update BYOND
13 lines
621 B
Plaintext
13 lines
621 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_"
|
|
GLOBAL_REAL_VAR(sql_version) = 0
|