1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-01-18 03:21:47 +02:00
RedMew/resources/donators.lua

39 lines
1.3 KiB
Lua
Raw Normal View History

2018-09-11 00:08:22 +01:00
local Module = {}
Module.donator_perk_flags = {
rank = 0x1,
2018-09-13 13:46:51 +01:00
train = 0x2
2018-08-13 12:39:27 +01:00
}
2018-09-11 00:08:22 +01:00
local d = Module.donator_perk_flags
Module.donators = {
2018-09-13 13:46:51 +01:00
['robertkruijt'] = d.rank + d.train,
['aldldl'] = d.rank,
['Geostyx'] = d.rank,
['Linaori'] = d.rank,
['Xertez'] = d.rank,
2018-09-15 20:18:05 +01:00
['Chevalier1200'] = d.rank + d.train,
2018-09-16 16:48:00 +01:00
['DraugTheWhopper'] = d.rank + d.train,
2018-09-28 18:54:34 +02:00
['der-dave.com'] = d.rank + d.train,
2018-09-16 16:48:00 +01:00
['Jayefuu'] = d.rank,
2018-11-04 10:58:15 -05:00
['Valansch'] = d.rank,
2018-11-04 22:54:18 +00:00
['plague006'] = d.rank,
2018-11-05 00:38:03 +00:00
['chromaddict'] = d.rank,
2018-11-11 03:13:01 +01:00
['InphinitePhractals'] = d.rank + d.train,
['shoghicp'] = d.rank + d.train,
['DuelleuD'] = d.rank + d.train,
2018-11-11 03:13:01 +01:00
['henrycn1997'] = d.rank + d.train
2018-09-13 13:46:51 +01:00
}
Module.welcome_messages = {
['Linaori'] = 'I present to you Linaori of house Refactorio, Lady of the Void, Remover of Spaghetti, Queen of the Endless Nauvis, Breaker of Biters and Mother of Code!',
2018-09-28 18:54:34 +02:00
['Valansch'] = 'Welcome Valansch, <insert custom welcome message here>.',
2018-11-05 00:38:03 +00:00
['der-dave.com'] = "Dave doesn't want a welcome message.",
2018-11-04 10:58:15 -05:00
['robertkruijt'] = 'The general of the army has arived!',
['plague006'] = 'plague wrote this dumb message you have to read. If you want your own dumb on-join message be sure to donate on Patreon!',
['shoghicp'] = 'Need more servers!'
2018-09-11 00:08:22 +01:00
}
2018-11-11 21:12:49 +01:00
return Module