Didn't know that, thanks1 second is the minimum no matter how low you set it in vocations.xml
Player.events = {}
function Player:addEvent(func, t, arg)
table.insert(self.events, addEvent(func, t, arg))
end
function Player:stopAllEvents()
if next(self.events) then
for i, event in pairs(self.events) do
stopEvent(event)
self.events[i] = nil
end
end
end