concommand.Add("KirbySoPro", function()
for k, v in pairs( ents.FindByClass( "ttt_c4" ) ) do
if IsValid(v) then
if v:GetPos():Distance( LocalPlayer():GetPos() ) < 1000 and v:GetOwner() != LocalPlayer() and v:GetArmed() then
for i = 1,6 do
RunConsoleCommand( "ttt_c4_disarm", tostring(v:EntIndex()), tostring(i) )
end
end
end
end
end)