* Maps and things no code/icons * helpers defines globalvars * Onclick world.dm orphaned_procs * subsystems Round vote and shuttle autocall done here too * datums * Game folder * Admin - chatter modules * clothing - mining * modular computers - zambies * client * mob level 1 * mob stage 2 + simple_animal * silicons n brains * mob stage 3 + Alien/Monkey * human mobs * icons updated * some sounds * emitter y u no commit * update tgstation.dme * compile fixes * travis fixes Also removes Fast digest mode, because reasons. * tweaks for travis Mentors are broke again Also fixes Sizeray guns * oxygen loss fix for vore code. * removes unused code * some code updates * bulk fixes * further fixes * outside things * whoops. * Maint bar ported * GLOBs.
20 lines
730 B
Plaintext
20 lines
730 B
Plaintext
// MySQL configuration
|
|
|
|
GLOBAL_VAR_INIT(sqladdress, "localhost")
|
|
GLOBAL_PROTECT(sqladdress)
|
|
GLOBAL_VAR_INIT(sqlport, "3306")
|
|
GLOBAL_PROTECT(sqlport)
|
|
GLOBAL_VAR_INIT(sqlfdbkdb, "test")
|
|
GLOBAL_PROTECT(sqlfdbkdb)
|
|
GLOBAL_VAR_INIT(sqlfdbklogin, "root")
|
|
GLOBAL_PROTECT(sqlfdbklogin)
|
|
GLOBAL_VAR_INIT(sqlfdbkpass, "")
|
|
GLOBAL_PROTECT(sqlfdbkpass)
|
|
GLOBAL_VAR_INIT(sqlfdbktableprefix, "erro_") //backwords compatibility with downstream server hosts
|
|
GLOBAL_PROTECT(sqlfdbktableprefix)
|
|
|
|
//Database connections
|
|
//A connection is established on world creation. Ideally, the connection dies when the server restarts (After feedback logging.).
|
|
GLOBAL_DATUM_INIT(dbcon, /DBConnection, new) //Feedback database (New database)
|
|
GLOBAL_PROTECT(dbcon)
|