aboutsummaryrefslogtreecommitdiff
path: root/gamemode/core/logo.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/core/logo.lua')
-rw-r--r--gamemode/core/logo.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/gamemode/core/logo.lua b/gamemode/core/logo.lua
new file mode 100644
index 0000000..05c8841
--- /dev/null
+++ b/gamemode/core/logo.lua
@@ -0,0 +1,16 @@
+local ngm = GM or GAMEMODE
+timer.Simple(5,function()
+ local logo = [[
+ ___
+ - -_, ,
+( ~/|| ||
+( / || ,._-_ =||= _-_ ,._-_ '\\/\\
+ \/==|| || || || \\ || || ;'
+ /_ _|| || || ||/ || ||/
+( - \\, \\, \\, \\,/ \\, |/
+ (
+ -_-
+ ]]
+ print(logo)
+ print(string.format("Version %d.%d.%d",unpack(ngm.Version)))
+end)