Skip to Content
Home
Code of Conduct
Intelligence Center
Rank Structure
RGN Leadership
Member of The Week
Testimonials
Partners
Divisions
Sections & Squads
Departments
Discord
Silent Response Gaming
Login Account
(0)
Cart (0)
APPLY TODAY
Home
Code of Conduct
Intelligence Center
Rank Structure
RGN Leadership
Member of The Week
Testimonials
Partners
Divisions
Sections & Squads
Departments
Discord
Silent Response Gaming
Login Account
(0)
Cart (0)
APPLY TODAY
Home
Folder: Info
Back
Code of Conduct
Intelligence Center
Rank Structure
Folder: Community
Back
RGN Leadership
Member of The Week
Testimonials
Partners
Folder: Clan Ops
Back
Divisions
Sections & Squads
Departments
Discord
Login Account
APPLY TODAY

RESILIENT GAMING NETWORK

Support

Silent Response Gaming is dedicated to providing the best support possible to our website visitors, contact us today for more information or join our discord!

✉ support@rgnclan.com ✉ silentresponsegaming@gmail.com ☎ Not Available by Phone
📍 Philadelphia, PA

2026 SILENT RESPONSE GAMING. ALL RIGHTS RESERVED

SILENT RESPONSE GAMING

Quick Links

About Us Contact Appeals FAQ Donate Discord Event Reporting Apply Today Return Policy Terms of Service Privacy Policy

/* ====================================== BACK TO TOP ====================================== */ const backToTop = document.getElementById( "backToTop" ); window.addEventListener( "scroll", () => { if(window.scrollY > 300){ backToTop.classList.add( "show" ); }else{ backToTop.classList.remove( "show" ); } } ); backToTop.addEventListener( "click", () => { window.scrollTo({ top:0, behavior:"smooth" }); } ); /* ====================================== INTRO ====================================== */ if(!sessionStorage.getItem("rgnPlayed")){ sessionStorage.setItem( "rgnPlayed", "true" ); setTimeout(()=>{ document.getElementById("r") .classList.add("rgnShow"); },700); setTimeout(()=>{ document.getElementById("g") .classList.add("rgnShow"); },1200); setTimeout(()=>{ document.getElementById("n") .classList.add("rgnShow"); },1700); setTimeout(()=>{ document.getElementById("rgnLine") .classList.add("rgnLineShow"); },2600); }else{ const intro = document.getElementById( "rgnIntro" ); if(intro){ intro.remove(); } } /* ====================================== SCROLL EFFECT ====================================== */ document.addEventListener( "DOMContentLoaded", function(){ if(window.innerWidth < 769){ return; } const sections = document.querySelectorAll( '.page-section' ); if(!sections.length){ return; } const observer = new IntersectionObserver( (entries)=>{ entries.forEach(entry=>{ if(entry.isIntersecting){ entry.target.classList.add( 'rgn-scroll-visible' ); entry.target.classList.remove( 'rgn-scroll-hidden' ); observer.unobserve( entry.target ); } }); }, { threshold:0.08 } ); sections.forEach(section=>{ section.classList.add( 'rgn-scroll-hidden' ); observer.observe(section); }); });