summaryrefslogtreecommitdiff
path: root/lua/autorun/setupzones.lua
blob: bf1da4abfd2ea35a99d94bd5be44ec7a2619224c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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))