Call a function on reload
I'm trying to make a weapon with magazines taped together, which makes every other reload faster. I'm not very familiar with Cortex Command's API, and the wiki isn't all that helpful. This was the best I could do, but I'm pretty sure I'm doing it wrong:
Code:
function Update(self)
if self:IsReloading() then
stuff
end
end