-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
103 changed files
with
2,094 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,3 +83,6 @@ $RECYCLE.BIN/ | |
|
||
# Windows shortcuts | ||
*.lnk | ||
|
||
.vscode | ||
*luacheckrc |
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
return { | ||
players={ | ||
BADgamerNL={r=255,g=20,b=147}, | ||
arty714={r=150,g=68,b=161}, | ||
Cooldude2606={r=57,g=192,b=207}, | ||
mark9064={r=99,g=0,b=255}, | ||
eissturm={r=25,g=25,b=112}, | ||
Sakama={r=20,g=213,b=80}, | ||
Sakama={r=20,g=213,b=80}, | ||
freek18={r=50,g=0,b=255}, | ||
aldldl={r=0,g=131,b=255}, | ||
NAD4X4={r=135,g=206,b=250}, | ||
cydes={r=82,g=249,b=155}, | ||
UUBlueFire={r=0,g=204,b=255} | ||
}, | ||
disallow = { -- the value does not matter it is only the key which is checked | ||
black = {r = 0, g = 0, b = 0}, | ||
white = {r = 255, g = 255, b = 255}, | ||
jailed = {r = 255, g = 255, b = 255}, | ||
probation = {r = 255, g = 255, b = 255}, | ||
guest = {r = 255, g = 255, b = 255}, | ||
auto_trusted = {r = 192, g = 192, b = 192}, | ||
regular = {r = 0.155, g = 0.540, b = 0.898}, | ||
admin = {r = 0.093, g = 0.768, b = 0.172}, | ||
donator = {r = 172.6, g = 70.2, b = 215.8}, | ||
[-10] = {r = 255, g = 255, b = 255}, | ||
[0] = {r = 255, g = 255, b = 255}, | ||
[10] = {r = 192, g = 192, b = 192}, | ||
[20] = {r = 0.155, g = 0.540, b = 0.898}, | ||
[30] = {r = 0.093, g = 0.768, b = 0.172}, | ||
success = {r = 0, g = 255, b = 0}, | ||
warning = {r = 255, g = 255, b = 0}, | ||
fail = {r = 255, g = 0, b = 0}, | ||
info = {r = 255, g = 255, b = 255} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
return { | ||
disallow = { | ||
['loader']=true, | ||
['fast-loader']=true, | ||
['express-loader']=true, | ||
['electric-energy-interface']=true, | ||
['infinity-chest']=true | ||
}, | ||
max_range=50, | ||
allow_blueprint_repair=false, | ||
allow_ghost_revive=true, | ||
allow_heal_entities=true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- Config file for the warning system, this is very similar to reports but is for the use of moderators rather than normal users. | ||
return { | ||
actions = { -- what actions are taking at number of warnings | ||
-- if a localized string is used then __1__ will by_player_name and __2__ will be the current warning count (auto inserted) | ||
{'warnings.received'}, | ||
{'warnings.received'}, | ||
{'warnings.received',{'warnings.pre-kick'}}, | ||
function(player,by_player_name,number_of_warnings) | ||
game.kick_player(player,{'warnings.received',by_player_name,number_of_warnings,{'warnings.kick'}}) | ||
end, | ||
{'warnings.received',{'warnings.pre-pre-ban'}}, | ||
{'warnings.received',{'warnings.pre-ban'}}, | ||
function(player,by_player_name,number_of_warnings) | ||
game.ban_player(player,{'warnings.received',by_player_name,number_of_warnings,{'warnings.ban',{'info.website-link'}}}) | ||
end | ||
}, | ||
temp_warning_cool_down=30, -- time for a temp warning (given by script) to be removed (in minutes) | ||
temp_warning_limit=5 -- the number of temp warnings (given by script) that are allowed before full warnings are given | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.