local TiempoPr = getTickCount()
addEvent("onPlayerSpray", true)
addEventHandler("onPlayerSpray", root, function(rockets)
local current = math.floor ( ( getTickCount() - TiempoPr ) / 1000 )
if ( current > 5 ) then
outputChatBox("Player #FFFFFF"..getPlayerName(source).." #FFFFFFhas shot #aacccc["..rockets.." #ffffffrockets in #ffffff"..current.." #ffffffseconds]", root, 255, 255, 255, true)
end
end
)