diff options
| author | Alexander Pickering <Alexander.Pickering@anondomain.site90.net> | 2016-01-22 19:55:23 -0500 |
|---|---|---|
| committer | Alexander Pickering <Alexander.Pickering@anondomain.site90.net> | 2016-01-22 19:55:23 -0500 |
| commit | e8439ad503f530724f1eae2de1a8ac2c19df52c0 (patch) | |
| tree | c02e2ecf065ece9b41b2234ef41cb914e9b6b3d0 /gamemode/hud/games | |
| parent | 85b92e122cdcf6879e1c7950c8015ecb2a0675e4 (diff) | |
| download | wintersurvival2-e8439ad503f530724f1eae2de1a8ac2c19df52c0.tar.gz wintersurvival2-e8439ad503f530724f1eae2de1a8ac2c19df52c0.tar.bz2 wintersurvival2-e8439ad503f530724f1eae2de1a8ac2c19df52c0.zip | |
More debugging around file.Find not finding games folder
Diffstat (limited to 'gamemode/hud/games')
| -rw-r--r-- | gamemode/hud/games/base.lua | 2 | ||||
| -rw-r--r-- | gamemode/hud/games/connectthedots.lua | 7 | ||||
| -rw-r--r-- | gamemode/hud/games/rubickscircle.lua | 1 |
3 files changed, 10 insertions, 0 deletions
diff --git a/gamemode/hud/games/base.lua b/gamemode/hud/games/base.lua new file mode 100644 index 0000000..a6c68c1 --- /dev/null +++ b/gamemode/hud/games/base.lua @@ -0,0 +1,2 @@ +--A file to show what functions are used for minigames +print("Base included!") diff --git a/gamemode/hud/games/connectthedots.lua b/gamemode/hud/games/connectthedots.lua new file mode 100644 index 0000000..c24ff14 --- /dev/null +++ b/gamemode/hud/games/connectthedots.lua @@ -0,0 +1,7 @@ +--The connet the dots spell game +print("Hi from connectthedots.lua") + +function connectthedots() + print("Blah!") + return 100 +end diff --git a/gamemode/hud/games/rubickscircle.lua b/gamemode/hud/games/rubickscircle.lua new file mode 100644 index 0000000..528f62b --- /dev/null +++ b/gamemode/hud/games/rubickscircle.lua @@ -0,0 +1 @@ +print(" second file to see if something's wrong with file function") |
