mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 03:25:23 +09:00
* Refactor custom start * Refactor afk kick * Fix use of assert get player * Refactor chat popup * Refactor chat auto reply * Refactor help bubbles * Refactor damage popups * Refactor death markers * Refactor deconstruction log * Remove FAGC logging * Refactor discord alerts * Refactor insert pickup * Refactor inventory clear * Refactor extra logging * Refactor nuke protection * Refactor pollution grading * Refactor protection jail * Refactor report jail * Refactor mine depletion * Refactor degrading tiles * Refactor station auto name * Refactor spawn area * Refactor fast deconstruction * Bug Fixes
26 lines
836 B
Lua
26 lines
836 B
Lua
--- Config file for the compliatrons including where they spawn and what messages they show
|
|
-- @config Compilatron
|
|
|
|
return {
|
|
message_cycle = 60 * 15, --- @setting message_cycle 15 seconds default, how often (in ticks) the messages will cycle
|
|
locations = {
|
|
["Spawn"] = {
|
|
spawn_position = { x = 0, y = 0 },
|
|
spawn_surface = "nauvis",
|
|
entity_name = "small-biter",
|
|
messages = {
|
|
{ "info.website" },
|
|
{ "info.read-readme" },
|
|
{ "info.discord" },
|
|
{ "info.softmod" },
|
|
{ "info.redmew" },
|
|
{ "info.custom-commands" },
|
|
{ "info.status" },
|
|
{ "info.lhd" },
|
|
{ "info.github" },
|
|
{ "info.patreon" },
|
|
},
|
|
}
|
|
},
|
|
}
|