diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2017-08-07 18:22:29 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2017-08-07 18:22:29 -0400 |
| commit | daa59a7835c350a09dcb207c714acf57828137f3 (patch) | |
| tree | ae2c00da0e546447ca17a9c5d8492310e5e93f27 /lua/autorun/setupzones.lua | |
| download | artery_editor-daa59a7835c350a09dcb207c714acf57828137f3.tar.gz artery_editor-daa59a7835c350a09dcb207c714acf57828137f3.tar.bz2 artery_editor-daa59a7835c350a09dcb207c714acf57828137f3.zip | |
Inital Commit
Diffstat (limited to 'lua/autorun/setupzones.lua')
| -rw-r--r-- | lua/autorun/setupzones.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lua/autorun/setupzones.lua b/lua/autorun/setupzones.lua new file mode 100644 index 0000000..bf1da4a --- /dev/null +++ b/lua/autorun/setupzones.lua @@ -0,0 +1,14 @@ +--[[ + Add a few differnt zone types to sandbox that can be placed around +]] +AddCSLuaFile("zones.lua") +include("zones.lua") + +print("Hello from artery_editor.lua") +if not zones then error("You must have the zones addon installed for artery_editor to work!") return end + + +zones.RegisterClass("artery_town",Color(0,255,255)) +zones.RegisterClass("artery_outpost",Color(0,255,0)) +zones.RegisterClass("artery_huntingground",Color(255,255,0)) +zones.RegisterClass("artery_dungon",Color(255,0,255)) |
