• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

MyAac problem

It fails to load your config.lua
PHP:
config['lua'] = load_config_lua($config['server_path'] . 'config.lua');

There must be some COLOR_GREEN somwhere in your config.lua, can you post that line of config.lua (+- 3 lines arround).
I guess it is some globaly defined const, easiest fix (noob solution) is to replace that with value of that const.
 
It would be also nice to know what server is that.
tfs 0.4 3777
It fails to load your config.lua
PHP:
config['lua'] = load_config_lua($config['server_path'] . 'config.lua');

There must be some COLOR_GREEN somwhere in your config.lua, can you post that line of config.lua (+- 3 lines arround).
I guess it is some globaly defined const, easiest fix (noob solution) is to replace that with value of that const.
yes this line healthHealingColor = COLOR_GREEN
 
Try to define these missing colors above or simply replace with numeric values:
Lua:
COLOR_BLACK = 0
COLOR_BLUE = 5
COLOR_GREEN = 18
COLOR_TEAL = 35
COLOR_LIGHTGREEN = 66
COLOR_DARKBROWN = 78
COLOR_LIGHTBLUE = 89
COLOR_DARKRED = 108
COLOR_DARKPURPLE = 112
COLOR_BROWN = 120
COLOR_GREY = 129
COLOR_DARKPINK = 152
COLOR_PURPLE = 154
COLOR_DARKORANGE = 156
COLOR_RED = 180
COLOR_PINK = 190
COLOR_ORANGE = 192
COLOR_DARKYELLOW = 205
COLOR_YELLOW = 210
COLOR_WHITE = 215
COLOR_NONE = 255
 
Back
Top