summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/misc/clock.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/craftablesystem/misc/clock.lua')
-rw-r--r--gamemode/craftablesystem/misc/clock.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/misc/clock.lua b/gamemode/craftablesystem/misc/clock.lua
new file mode 100644
index 0000000..af986ea
--- /dev/null
+++ b/gamemode/craftablesystem/misc/clock.lua
@@ -0,0 +1,14 @@
+local COMBI = {}
+
+COMBI.Name = "Clock"
+COMBI.Description = "Shows you world time."
+
+COMBI.Req = {}
+COMBI.Req["Iron"] = 10
+COMBI.Req["Glass"] = 10
+
+COMBI.Results = "gms_clock_big"
+COMBI.Texture = "gms_icons/gms_clock_big.png"
+COMBI.BuildSiteModel = "models/props_trainstation/trainstation_clock001.mdl"
+
+GMS.RegisterCombi( COMBI, "Structures" )