diff options
Diffstat (limited to 'gamemode/server/tribes.lua')
| -rw-r--r-- | gamemode/server/tribes.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gamemode/server/tribes.lua b/gamemode/server/tribes.lua new file mode 100644 index 0000000..d2e6722 --- /dev/null +++ b/gamemode/server/tribes.lua @@ -0,0 +1,10 @@ +--Tribes table +if ( !GM.Tribes ) then + GM.Tribes = GM.Tribes or {} + table.insert( GM.Tribes, { name = "The Stranded", color = Color( 200, 200, 0 ), password = false } ) + table.insert( GM.Tribes, { name = "Survivalists", color = Color( 225, 225, 225 ), password = false } ) + table.insert( GM.Tribes, { name = "Anonymous", color = Color( 0, 145, 145 ), password = false } ) + table.insert( GM.Tribes, { name = "The Gummies", color = Color( 255, 23, 0 ), password = false } ) + table.insert( GM.Tribes, { name = "The Dynamics", color = Color( 0, 72, 255 ), password = false } ) + table.insert( GM.Tribes, { name = "Scavengers", color = Color( 8, 255, 0 ), password = false } ) +end |
