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
[ ' 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 ,
2018-11-10 21:43:11 -05:00
[ ' shoghicp ' ] = d.rank + d.train ,
[ ' DuelleuD ' ] = d.rank + d.train ,
2018-11-14 15:52:11 +01:00
[ ' henrycn1997 ' ] = d.rank + d.train ,
2018-11-15 14:03:12 +01:00
[ ' Raiguard ' ] = 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-10 21:43:11 -05:00
[ ' 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! ' ,
2018-11-12 10:36:27 +01:00
[ ' shoghicp ' ] = ' Need more servers! ' ,
2018-11-15 14:03:12 +01:00
[ ' aldldl ' ] = ' ALo \' s Here ' ,
[ ' Raiguard ' ] = ' I am... was... God. The one you call \' The Almighty \' . The creator of Factories. But now, I am dead. The Biters killed me. I am sorry. ' ,
2018-09-11 00:08:22 +01:00
}
2018-11-11 21:12:49 +01:00
return Module