Redragon TAIPAN MAX 12000DPI Wireless Gaming Mouse - Black - - | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
-

Redragon TAIPAN MAX 12000DPI Wireless Gaming Mouse - Black

SKU: RD-M810RGB-MAX
R 478.92
Available on Backorder

Tri-mode wireless freedom | 12000 DPI precision | 10-button control | Vivid RGB lighting | Ergonomic right-handed design

This item is on backorder — new stock is expected around 7 Sep 2026. Order now and we'll ship yours as soon as it arrives.

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support
Secure payment — PayFast & Yoco · 256-bit SSL encrypted

Frequently Bought Together

Tri-mode wireless freedom | 12000 DPI precision | 10-button control | Vivid RGB lighting | Ergonomic right-handed design

Quick Specs

  • Achieve pinpoint accuracy with a high-precision optical sensor reaching up to 12000 DPI.
  • Connect your way with tri-mode connectivity — wired, 2.4G wireless, and Bluetooth all in one mouse.
  • Dominate longer sessions with a built-in 1000 mAh rechargeable lithium battery.
  • Command the battlefield with 10 buttons, including 8 fully programmable for your playstyle.
  • Immerse yourself in the fight with vibrant RGB backlighting across a sleek ergonomic right-handed design.

Dominate Every Match with the Redragon TAIPAN MAX

The Redragon TAIPAN MAX is a wireless gaming mouse engineered for the discerning South African gamer who refuses to compromise on performance or freedom. With tri-mode connectivity, a high-precision optical sensor, and an ergonomic right-handed form, this is the weapon your setup has been waiting for.

Precision That Keeps You One Step Ahead

Tired of your cursor drifting at the worst possible moment? The TAIPAN MAX is powered by a high-precision optical sensor — the CX52850E paired with the PAW3311 — delivering up to 12000 DPI tracking and a maximum polling rate of 1000 Hz. Every micro-movement translates instantly and accurately on screen, so when the moment counts, your aim does too.

Cut the Cable, Keep the Competitive Edge

The TAIPAN MAX gives you three ways to connect: plug in the 180 cm Type-C cable for zero-latency wired play, slip in the USB wireless receiver for fast 2.4G wireless freedom, or pair via Bluetooth when you need a clean, cable-free desk. Whichever mode you choose, you stay in control. The built-in 1000 mAh lithium battery keeps you powered through extended sessions without hunting for AA batteries.

Built to Be an Extension of Your Will

Ten buttons — eight of them fully programmable — put every macro, hotkey, and action within immediate reach. The ergonomic right-handed shape sits naturally in your palm, reducing fatigue across long gaming sessions, while textured grip zones and an ABS build keep the mouse planted and responsive. RGB backlighting wraps the body in vivid colour, making the TAIPAN MAX look as fierce as it performs.

Features

  • Tri-mode connectivity: wired (Type-C), 2.4G wireless (USB receiver), and Bluetooth for versatile setup options.
  • High-precision optical sensor (CX52850E + PAW3311) with up to 12000 DPI for accurate, responsive tracking.
  • 1000 Hz maximum polling rate ensures ultra-responsive cursor movement during competitive play.
  • 10 total buttons with 8 programmable for full macro and hotkey customisation via software.
  • Built-in 1000 mAh rechargeable lithium battery for extended wireless sessions.
  • Ergonomic right-handed shape reduces fatigue and provides a natural, secure grip.
  • RGB backlighting for personalised in-game ambience.
  • Left and right button switches rated for 20 million clicks for long-term durability.

Specifications

  • Max DPI: 12000 DPI
  • Connection: Tri-mode
  • Buttons: 10
  • Weight: 115g
  • Max Polling Rate: 1000Hz
  • Shape: Ergonomic Right-Handed
  • RGB Lighting: Yes
  • Colour: Black
  • Warranty: 18 months
  • Product Dimensions: 12.7 x 7.5 x 4.1 cm

What's in the Box

  • Redragon TAIPAN MAX Gaming Mouse - Black x1
  • Type-C Cable x1
  • USB Wireless Receiver x1

Why Redragon

Redragon is dedicated to empowering gamers with high-performance, reliable peripherals that deliver exceptional value — the trusted choice for gamers across South Africa who want to elevate their gameplay without breaking the bank. The TAIPAN MAX is a testament to that commitment: uncompromising hardware at a price that keeps you in the fight.

Brand -
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty -
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

REDRAGON STORM WIRED RGB - LIGHTWEIGHT DESIGN
Redragon

REDRAGON STORM WIRED RGB - LIGHTWEIGHT DESIGN

R 364.72

In Stock

New
Redragon NAGA RGB 10000DPI Wireless Mouse- Black
-

Redragon NAGA RGB 10000DPI Wireless Mouse- Black

R 312.81

Out of Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!