ents.AddCreateCallback("obj_attachment_sapper", function(ent) timer.Simple(0.015, function() local bot = ent.m_hBuiltOnEntity if ent.m_iTeamNum == TEAM_BLUE and bot:IsPlayer() and bot.m_iTeamNum == TEAM_RED and bot:IsBot() and bot:InCond(12) then ents.FindByName("realtimer"):Trigger() ent:AddCallback(ON_REMOVE, function() ents.FindByName("realtimer"):CancelPending() end) end) end end)