mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-10 08:54:15 +00:00
* Configuration datum refactor * More WIP * New easier on the eyes format * More WIP * Finished config.txt * Fucktons more WIP * The end of conversion draws near... * Add all this shit * Done converting entries finally * Hunting down compile errors * More WIP * MORE CONVERSIONS * More WIP * More WIP * Oh shit only 90 errors this time! * IT COMPILES!!! * Fixes world start runtimes
29 lines
797 B
Plaintext
29 lines
797 B
Plaintext
#define CURRENT_RESIDENT_FILE "dbconfig.txt"
|
|
|
|
CONFIG_DEF(flag/sql_enabled) // for sql switching
|
|
protection = CONFIG_ENTRY_LOCKED
|
|
|
|
CONFIG_DEF(string/address)
|
|
value = "localhost"
|
|
protection = CONFIG_ENTRY_LOCKED | CONFIG_ENTRY_HIDDEN
|
|
|
|
CONFIG_DEF(number/port)
|
|
value = 3306
|
|
min_val = 0
|
|
max_val = 65535
|
|
protection = CONFIG_ENTRY_LOCKED | CONFIG_ENTRY_HIDDEN
|
|
|
|
CONFIG_DEF(string/feedback_database)
|
|
value = "test"
|
|
protection = CONFIG_ENTRY_LOCKED | CONFIG_ENTRY_HIDDEN
|
|
|
|
CONFIG_DEF(string/feedback_login)
|
|
value = "root"
|
|
protection = CONFIG_ENTRY_LOCKED | CONFIG_ENTRY_HIDDEN
|
|
|
|
CONFIG_DEF(string/feedback_password)
|
|
protection = CONFIG_ENTRY_LOCKED | CONFIG_ENTRY_HIDDEN
|
|
|
|
CONFIG_DEF(string/feedback_tableprefix)
|
|
protection = CONFIG_ENTRY_LOCKED | CONFIG_ENTRY_HIDDEN
|