2018-09-11 01:08:22 +02:00
local Module = { }
Module.donator_perk_flags = {
rank = 0x1 ,
2018-09-13 14:46:51 +02:00
train = 0x2
2018-08-13 13:39:27 +02:00
}
2018-09-11 01:08:22 +02:00
local d = Module.donator_perk_flags
Module.donators = {
2018-09-13 14:46:51 +02:00
[ ' robertkruijt ' ] = d.rank + d.train ,
[ ' aldldl ' ] = d.rank ,
[ ' Geostyx ' ] = d.rank ,
[ ' Linaori ' ] = d.rank ,
[ ' Terarink ' ] = d.rank + d.train ,
[ ' Xertez ' ] = d.rank ,
2018-09-15 21:18:05 +02:00
[ ' Chevalier1200 ' ] = d.rank + d.train ,
2018-09-16 17:48:00 +02:00
[ ' DraugTheWhopper ' ] = d.rank + d.train ,
2018-09-28 18:54:34 +02:00
[ ' der-dave.com ' ] = d.rank + d.train ,
2018-09-16 17:48:00 +02:00
[ ' Jayefuu ' ] = d.rank ,
2018-11-04 17:58:15 +02:00
[ ' Valansch ' ] = d.rank ,
2018-11-05 00:54:18 +02:00
[ ' plague006 ' ] = d.rank ,
2018-11-05 02:38:03 +02:00
[ ' chromaddict ' ] = d.rank ,
2018-11-11 04:13:01 +02:00
[ ' InphinitePhractals ' ] = d.rank + d.train ,
[ ' henrycn1997 ' ] = d.rank + d.train
2018-09-13 14:46:51 +02: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 02:38:03 +02:00
[ ' der-dave.com ' ] = " Dave doesn't want a welcome message. " ,
2018-11-04 17:58:15 +02: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! '
2018-09-11 01:08:22 +02:00
}
return Module