Skip to content

Instantly share code, notes, and snippets.

View eklundkristoffer's full-sized avatar

Kristoffer Eklund eklundkristoffer

View GitHub Profile
@dbjorkholm
dbjorkholm / globalevents-paintball.lua
Last active September 4, 2016 18:34
[TFS 1.x] Paintball Event
function onThink(interval, lastExecution, thinkInterval)
if #Game.getPlayers() < PaintballEvent.minPlayers or PaintballEvent.startingUp or PaintballEvent.running then
return true
end
PaintballEvent:init()
return true
end