diff options
| author | Alexander Pickering <Alexander.Pickering@anondomain.site90.net> | 2016-04-16 04:17:06 -0400 |
|---|---|---|
| committer | Alexander Pickering <Alexander.Pickering@anondomain.site90.net> | 2016-04-16 04:17:06 -0400 |
| commit | f679e1e93372223f468a759f3820f68011b1ddce (patch) | |
| tree | b07a42cd633563c2983d4f9920afb826287a3fe0 /gamemode/server | |
| parent | 28a485732c7e070a24db525da8c90159546908f8 (diff) | |
| download | gmstranded-f679e1e93372223f468a759f3820f68011b1ddce.tar.gz gmstranded-f679e1e93372223f468a759f3820f68011b1ddce.tar.bz2 gmstranded-f679e1e93372223f468a759f3820f68011b1ddce.zip | |
Refactored init.lua code for planting console commands
Diffstat (limited to 'gamemode/server')
| -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 |
