25.11.2016, 08:32
You can either create a new script for each zone, or several instances per script.
Code:
if not p1 then
p1 = PID:init({ ... })
end
if not p2 then
p2 = PID:init({ ... })
end
p1:run()
p2:run()