Jump to content

FLPPPPP

Moderators
  • Posts

    1659
  • Joined

  • Days Won

    130

Everything posted by FLPPPPP

  1. Hello, already come pre-flashed firmware 1:1.
  2. Recommended but not mandatory
  3. @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto+Mono:wght@400;500&display=swap'); .cs-custom-guide * { box-sizing: border-box; margin: 0; padding: 0; } .cs-custom-guide { font-family: 'Inter', sans-serif; background: #0f0f0f; color: #e0e0e0; line-height: 1.7; padding: 40px 20px; min-height: 100vh; border-radius: 16px; } .cs-custom-guide .container { max-width: 1280px; margin: 0 auto; } .cs-custom-guide header { text-align: center; margin-bottom: 60px; } .cs-custom-guide .logo { font-size: 42px; font-weight: 700; background: linear-gradient(90deg, #2b80ff, #5b9fff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -1px; } .cs-custom-guide .subtitle { color: #b0b0b0; font-size: 18px; margin-top: 8px; } .cs-custom-guide .section { background: #1a1a1a; border-radius: 16px; padding: 40px; margin-bottom: 50px; box-shadow: 0 10px 30px rgba(0, 212, 255, 0.08); border: 1px solid rgba(0, 212, 255, 0.15); } .cs-custom-guide .section-header { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); } .cs-custom-guide .section-header img { width: 360px; height: auto; border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.5); } .cs-custom-guide .section-title { font-size: 32px; font-weight: 700; color: white; flex: 1; } .cs-custom-guide .section-desc { color: #b0b0b0; font-size: 15px; margin-top: 8px; line-height: 1.6; } .cs-custom-guide .info-box { background: rgba(0, 212, 255, 0.06); border-left: 4px solid #2b80ff; padding: 20px 25px; margin-bottom: 30px; border-radius: 8px; } .cs-custom-guide .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 20px; } .cs-custom-guide .info-item { background: #121212; padding: 18px 22px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.06); } .cs-custom-guide .info-item strong { color: #2b80ff; display: block; font-size: 15px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; } .cs-custom-guide details { margin-bottom: 14px; background: #121212; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.3); } .cs-custom-guide summary { padding: 18px 24px; font-size: 18px; font-weight: 600; color: #2b80ff; cursor: pointer; display: flex; align-items: center; gap: 12px; transition: all 0.2s ease; list-style: none; } .cs-custom-guide summary::-webkit-details-marker { display: none; } .cs-custom-guide summary:hover { background: rgba(0, 212, 255, 0.08); color: white; } .cs-custom-guide summary::before { content: "\25B6"; font-size: 14px; transition: transform 0.3s ease; display: inline-block; } .cs-custom-guide details[open] > summary::before { transform: rotate(90deg); } .cs-custom-guide .content { padding: 28px 32px; background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.05); } .cs-custom-guide h3 { font-size: 22px; margin: 28px 0 14px; color: white; position: relative; padding-bottom: 10px; } .cs-custom-guide h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 48px; height: 3px; background: #2b80ff; border-radius: 3px; } .cs-custom-guide h4 { font-size: 17px; color: #2b80ff; margin: 20px 0 10px; font-weight: 600; } .cs-custom-guide p { margin-bottom: 14px; } .cs-custom-guide ul, .cs-custom-guide ol { margin-left: 24px; margin-bottom: 20px; } .cs-custom-guide li { margin-bottom: 10px; position: relative; list-style: none; } .cs-custom-guide li::before { content: "\2022"; color: #2b80ff; margin-right: 10px; } .cs-custom-guide ol li { counter-increment: cs-counter; } .cs-custom-guide ol li::before { content: counter(cs-counter) "."; color: #2b80ff; margin-right: 10px; font-weight: 600; } .cs-custom-guide ol { counter-reset: cs-counter; } .cs-custom-guide .highlight { background: rgba(0, 255, 157, 0.1); padding: 4px 10px; border-radius: 4px; font-weight: 500; } .cs-custom-guide .warning { background: rgba(255, 59, 92, 0.1); border-left: 4px solid #ff3b5c; padding: 16px; border-radius: 8px; color: #ff9ba9; margin: 20px 0; } .cs-custom-guide .tip { background: rgba(0, 212, 255, 0.06); border-left: 4px solid #2b80ff; padding: 16px; border-radius: 8px; margin: 16px 0; } .cs-custom-guide .tip strong { color: #2b80ff; } .cs-custom-guide pre { background: #1f1f1f; padding: 16px 20px; border-radius: 10px; font-family: 'Roboto Mono', monospace; font-size: 15px; overflow-x: auto; margin: 16px 0; border: 1px solid rgba(255,255,255,0.08); } .cs-custom-guide img { max-width: 100%; border-radius: 10px; margin: 16px 0; box-shadow: 0 6px 20px rgba(0,0,0,0.4); } .cs-custom-guide code { background: #1f1f1f; padding: 3px 8px; border-radius: 4px; font-family: 'Roboto Mono', monospace; font-size: 14px; border: 1px solid rgba(255,255,255,0.08); } .cs-custom-guide hr { border: none; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent); margin: 40px 0; } .cs-custom-guide table { width: 100%; border-collapse: collapse; margin: 16px 0; } .cs-custom-guide th { background: #1a1a1a; color: #2b80ff; text-align: left; padding: 12px 16px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid rgba(0, 212, 255, 0.3); } .cs-custom-guide td { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); } .cs-custom-guide tr:hover td { background: rgba(0, 212, 255, 0.03); } .cs-custom-guide .video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; border-radius: 12px; margin: 20px 0; } .cs-custom-guide .video-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .cs-custom-guide .badge { display: inline-block; background: #2b80ff; color: #000; font-size: 12px; padding: 4px 12px; border-radius: 20px; font-weight: 700; margin-left: 12px; } .cs-custom-guide .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; } .cs-custom-guide .compare-grid img { width: 100%; } .cs-custom-guide .compare-label { text-align: center; font-weight: 600; color: #b0b0b0; margin-bottom: 8px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; } .cs-custom-guide a { color: #2b80ff; text-decoration: none; transition: color 0.2s ease; } .cs-custom-guide a:hover { color: #5b9fff; } .cs-custom-guide footer { text-align: center; padding: 40px 0; color: #666; font-size: 14px; } CLUTCH HARDWARE Guide & Download DMA Card Hardware Version Emulated Store https://enigma-x1.com/ Setup DMA Setup DMA STEP 1: PREPARE YOUR PC Click for Video 1. Install DMA Card in the Gaming-PC Turn off the Gaming-PC and plug the DMA-Card in -> When installing/uninstalling the DMA Card you should always completely power off the PC Insert USB cable into the DMA Data Port -> Use a USB 3.0 or faster cable for optimal speeds Insert the other side into a USB port on the Second-PC STEP 2: PREPARE YOUR BIOS 1. Power on the Gaming-PC and change the following BIOS settings on the Gaming-PC On Intel CPU disable VT-d On AMD CPU disable IOMMU 2. Save and exit from BIOS and continue to Windows -> If you get stuck on windows login you need to flash your DMA Hardware first STEP 3: PREPARE YOUR WINDOWS 1. Type "PowerShell" on the start menu on the Gaming-PC Open PowerShell with administrator privileges Type the following: REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /V HiberbootEnabled /T REG_dWORD /D 0 /F Press "Enter" and you should get the following message: Disable-MMAgent -mc Press "Enter" and you should get this: If you're seeing this message, it means that memory compression is already disabled and everything is working as expected. 2. Restart your Gaming-PC STEP 4: DONE Make sure that your DMA Card has firmware that supported the game you want to play. You can buy firmware on our store Already have firmware? Go to Flashing DMA DMA Card already flashed? Go to Testing DMA Testing DMA Testing DMA STEP 1: PREPARE THE SECOND-PC 1. Disable Windows Defender 2. Uninstall all other Anti-Virus programs (BitDefender, MalwareBytes, etc.) 3. Download the Loader 4. Run the Loader Login with your clutch-solution username and password This will generate the Loader_username and open it STEP 2: START THE TOOL 1. Select "DMA Tool" 2. Click the button 3. Type "1" and press Enter to "Start Full Test DMA" If you get "Good test result" just press any key to start speed test -> If you do not get "Good test result" follow the instructions shown in the program -> If necessary, check the troubleshooting. Once the "Progress" shows (100%) check the results below ~130-220MB/s -> Good Speed ~35-130MB/s -> You are most likely on a USB 2.0 port or cable -> Recommended to use a USB 3.0 10gbit/s cable or better ~8-32MB/s -> Tiny Speed -> This means that your DMA will work at reduced speeds, most likely because of your firmware STEP 3: DONE Flashing DMA Flashing DMA You do not need to do this if your DMA card already has a firmware update. STEP 1: PREPARE THE SECOND-PC 1. Disable Windows Defender 2. Uninstall all other Anti-Virus programs (BitDefender, MalwareBytes, etc.) 3. Download the Loader 4. Run the Loader Login with your clutch-solution username and password This will generate the Loader_username and open it STEP 2: START THE TOOL 1. Select "DMA Tool" 2. Click the button 3. Type "4" and press Enter to start flashing your DMA If this message appears, the folder where you should place your firmware.bin file will automatically open 4. Select your DMA model and follow the instructions -> For example, if you have a LeetDMA, select #2 and press Enter 5. Read the instructions carefully 6. Type "Y" and press "Enter" to continue If everything is correct you should see a screen similar to this -> You might get a different amount of sectors, just make sure that none are missing in between. STEP 2: DONE Continue with testing dma. HDMI-Fuser Hardware Version Last one Store https://enigma-x1.com/ About Fuser About Your Fuser INTERFACE [HDMI Output]: Connect to the Main Display (the main screen for playing games) [HDMI1]: Connect to the Gaming-PC graphics card (the computer for playing games) [HDMI2]: Connect to the Second-PC graphics card [Type-C]: Flash program and inject EDID [DC12V]: Power supply (default 12V 2A) INDICATORS [D1]: Power light (Normal when turned on.). [D2]: Fusion function on/off indicator (On when turned fuser turned on) [H1]: HDMI1 Gaming-PC input signal light (Normal when turned on) [H2]: HDMI2 Second-PC input signal light (Normal when turned on) BUTTON FUNCTIONS [Power]: Power switch. [K1]: Short press: Cycle through the resolutions, 1920*1080@240hz, 2560*1440@144hz, 2560*1080@144hz, 3840*2160@60hz,, 3440*1440@60hz, Default: 1920*1080@240hz Press and hold for three seconds (press and hold until displayed): The current resolution and refresh rate are displayed in the upper left corner of the screen, the upper part is the Gaming-PC information, and the lower part is the Second-PC information [K2]: Short press: Cycle through the upper layer cutout intensity, 0-20 levels, a total of 21 levels, factory default 0 (0 also cuts out) [K3]: Short press: Restore the upper layer cutout intensity to the factory default 0 [K4]: Short press: Turn on/off the fusion function Setup Fuser Setup Fuser STEP 1: SET UP YOUR FUSER [HDMI Output]: Connect to the Main Display [HDMI1]: Connect to the Gaming-PC graphics card [HDMI2]: Connect to the Second-PC graphics card [DC12V]: Plug it into an outlet STEP 2: SET UP DISPLAY SETTING ON WINDOWS 1. On the Gaming-PC change windows display settings: Change the hertz to the maximum that the fuser/main monitor supports 2. On the Second-PC change windows display settings: Extended Display (Recommended) Change the hertz to the maximum that the fuser/main monitor supports STEP 3: SETUP DONE You are ready Flashing Fuser Flashing Fuser STEP 1: PREPARE YOUR SYSTEM 1. Plug in your usb-c cable into the Type-c port on your fuser, and plug the other end into your Second-PC STEP 2: DOWNLOAD AND INSTALL 1. Download the USB Driver on the Second-PC Run it Click Install 2. Download Monitor Asset Manager on the Second-PC Run It Click Install 3. Download Injector on the Second-PC Run It STEP 3: EXTRACTING EDID FROM MAIN MONITOR 1. Connect the monitor you want to extract the EDID from to your Second-PC Attention the monitor must be connected via HDMI cable and NOT display port 2. Open MonInfo.exe on the Second-PC -> 3. Select the monitor from which the EDID will be extracted 4. Go to "File" -> "Save as..." 5. Save the dspinfo.bin to your desktop STEP 4: INJECTING EDID INTO YOUR FUSER 1. Open Injector.exe 1. Select UART COM 2. Select which profile (Screen Size) you want flash-> Default is 1920x1080 3. Click on "Load Config" 4. Click on "Select config" and select your "dspinfo.bin" that you saved on your desktop in Step 3.5 5. Click on "Inject Config" and wait for the process to complete. The screen may go black during injection. Once the injection is successful, a prompt will appear 2. After a successful injection, disconnect the Type-C cable A popup like this means success STEP 5: FLASH DONE DisplayPort-Fuser Hardware Version Last one Store https://enigma-x1.com/ About Fuser About Your Fuser INTERFACE [DP]: Connect to the Main Display (the main screen for playing games) [HDMI1]: Connect to the Gaming-PC graphics card (the computer for playing games) [HDMI2]: Connect to the Second-PC graphics card [Type-C]: Flash program and inject EDID [DC12V]: Power supply (default 12V 2A) INDICATORS [D1]: Power light (Normal when turned on.). [D2]: Fusion function on/off indicator (On when turned fuser turned on) [H1]: HDMI1 Gaming-PC input signal light (Normal when turned on) [H2]: HDMI2 Second-PC input signal light (Normal when turned on) BUTTON FUNCTIONS [Power]: Power switch. [K1]: Short press: Cycle through the resolutions, 1920*1080@240hz, 2560*1440@144hz, 2560*1080@144hz, 3840*2160@60hz,, 3440*1440@60hz, Default: 1920*1080@240hz Press and hold for three seconds (press and hold until displayed): The current resolution and refresh rate are displayed in the upper left corner of the screen, the upper part is the Gaming-PC information, and the lower part is the Second-PC information [K2]: Short press: Cycle through the upper layer cutout intensity, 0-20 levels, a total of 21 levels, factory default 0 (0 also cuts out) [K3]: Short press: Restore the upper layer cutout intensity to the factory default 0 [K4]: Short press: Turn on/off the fusion function Setup Fuser Setup Fuser STEP 1: SET UP YOUR FUSER [DP]: Connect to the Main Display [HDMI1]: Connect to the Gaming-PC graphics card [HDMI2]: Connect to the Second-PC graphics card [DC12V]: Plug it into an outlet STEP 2: SET UP DISPLAY SETTING ON WINDOWS 1. On the Gaming-PC change windows display settings: Change the hertz to the maximum that the fuser/main monitor supports 2. On the Second-PC change windows display settings: Extended Display (Recommended) Change the hertz to the maximum that the fuser/main monitor supports STEP 3: SETUP DONE You are ready Flashing Fuser Flashing Fuser STEP 1: PREPARE YOUR SYSTEM 1. Plug in your usb-c cable into the Type-c port on your fuser, and plug the other end into your Second-PC STEP 2: DOWNLOAD AND INSTALL 1. Download the USB Driver on the Second-PC Run it Click Install 2. Download Monitor Asset Manager on the Second-PC Run It Click Install 3. Download FlashTool on the Second-PC Run It STEP 3: EXTRACTING EDID FROM MAIN MONITOR 1. Connect the monitor you want to extract the EDID from to your Second-PC Attention the monitor must be connected via HDMI cable and NOT display port 2. Open MonInfo.exe on the Second-PC -> 3. Select the monitor from which the EDID will be extracted 4. Go to "File" -> "Save as..." 5. Save the dspinfo.bin to your desktop STEP 4: FLASHING EDID INTO YOUR FUSER 1. Open EnigmaDPFuserFlashTool.exe 1. Select COM INDEX 2. Click on "Para file" 4. Click on "Choose file" and select your "dspinfo.bin" that you saved on your desktop in Step 3.5 5. Click on "Write para" and wait for the process to complete. The screen may go black during injection. Once the injection is successful, a prompt will appear 2. After a successful injection, disconnect the Type-C cable A popup like this means success STEP 5: FLASH DONE Makcu Hardware Version V3.0 Support https://discord.gg/makcu Store https://www.makcu.com/ KmBox Net Hardware Version Last one Store https://enigma-x1.com/ Setup KmBox Net SETUP STEP 1: DOWNLOAD AND INSTALL 1. Download: Drivers on the Second-PC Run it Click Install 2. Connect your USB-Cables following this picture STEP 2: SET UP YOUR KMBOX 1. Type ncpa.cpl on start menu 2. Right click on "USB 2.0 Ethernet Adapter" then click on Properties 3. Select IPv6 then uncheck the checkbox 4. Select IPv4 then click on Properties 5. Select "Use the following IP address" Enter the IP that is displayed on your kmbox and increase it by one. -> Example: KMBox displays: 192.168.2.188 -> You write 192.168.2.189 Type Subnet mask: 255.255.255.0 Press OK STEP 3: DONE Flashing KmBox Net FLASHING STEP 1: DOWNLOAD AND INSTALL 1. Download: Flash Drivers on the Second-PC Run it Click Install 2. Download: Lasted firmware on the Second-PC Remove "???" from the file name Save it 3. Download: Flashtool on the Second-PC Run it STEP 2: START FLASHING PROCESS 1. Connect both USB cables into the Second PC 2. Unplug all USB from your kmbox 3. Hold down the tiny black button inside the case 4. Plug in USB at the same time to power it up. If screen goes white and the blue LED flashes fast, you're now in "Update Mode" 5. Open the flash tool from step 3 Select the USB device in the "DevList" Click "Select File", change file type to "*.bin" and select the .bin file from step 1.2 Click "Program" STEP 3: DONE After the process is done your kmbox will restart automatically and display the new firmware version KmBox B+ Pro Hardware Version Last one Store https://enigma-x1.com/ Setup KmBox B+ Pro SETUP STEP 1: DOWNLOAD AND INSTALL 1. Download Drivers on the Second-PC Run it Click Install 2. Connect your USB-Cables following this picture STEP 2: DONE Flashing KmBox B+ Pro FLASHING STEP 1: SET UP YOUR KMBOX 1. Connect your USB-Cables following this picture 2. Check the Firmware version -> 20240130 - 30th January 2024 3. If the firmware version is from before August 2023 (08.2023) then DO NOT FLASH it will permanantly break the device -> Sometimes your seller can help with this -> If you have "activate it" message follow this guide STEP 2: DOWNLOAD AND INSTALL 1. Download Drivers on the Second-PC Run it Click Install 2. Download Lasted firmware on the Second-PC Remove "???" from the file name Save it 3. Download Flashtool on the Second-PC Run it STEP 3: START FLASHING PROCESS 1. Click OK 2. Open device manager and check the COM Port 3. Go to Tools -> Serial -> Select your COM port 4. Go to Tools -> BurnFirmware 5. On update Firmware select the following values: board: esp32 burn_addr: 0x1000 erase_flash: yes com: COM# from step 2 -> Select "Users" and click "choose" to select the .bin file you downloaded 6. Click "ok" and wait for Burn to finish STEP 4: DONE After the process is done your kmbox will restart automatically and display the new firmware version Changing Freq KmBox B+ Pro CHANGING FREQ STEP 1: PREPARE YOUR SYSTEM 1. Connect your USB-Cables following this picture STEP 2: DOWNLOAD AND INSTALL [SECOND-PC] 1. Download Drivers on the Second-PC Run it Click Install 2. Download Flashtool on the Second-PC Run it STEP 3: START PROCESS 1. Click OK 2. Open device manager and check the COM Port 3. Go to Tools -> Serial -> Select your COM port 4. Type "km.freq()" and press enter -> If you receive the message saying that it is configured at 500, you need to continue following this guide to change, if your kmbox is already configured at 1000, you can ignore it. 5. Go to "device" -> double click on "boot.py" 6. Search for "km.freq(500)" -> change to "km.freq(1000)" 7. Go to Tools -> "DownloadAndRun (F5)" -> You need to receive a message similar to this 8. Type "km.freq()" and press enter -> You need to receive the message saying that it is set to "1000" 9. Type "km.reboot()" and press enter 10. After the process is done your kmbox will restart automatically -> You need to receive a message similar to this. STEP 4: DONE Hardware Guide Clutch-Solution
  4. Ola, se voce deseja ter o ESP no PC de jogos voce tem que ter o fuser. outra opcao eh usar parsec, porem voce vai jogar atraves do seu segundo pc, controlando via remoto o game pc. E voce tambem precisa ter um cartao DMA alem do fuser.
  5. Hey Hello!, our solution works on faceit, but you need to have a firmware which works on faceit as well (for DMA).
  6. Means you can use the product without lost your subscription timer, while we are trying fix ShareX issue
  7. Hey try powercycle your pc also i suggest to you open a ticket in our discord so we can investigate it more deep if necessary.
  8. Hello, if you buy from enigma means your DMA already come with emulated firmware (so you don't need buy anything else). About "fully unique" this doesn't exist for firmware below a short explanation how it's work
  9. Some provider can take a bit to receive the email. But you are able to access the guide even without email Click there on the top.
  10. Hey, please open a ticket our discord so we can sort it.
  11. Hey, you need to have active sub first. Your account don't have any subscription right now. After you bought the sub you should be able to access the guides Like below
  12. Hey, try reinstalling using Installer.exe from the guide, should fix it.
  13. We don't have ESP system for EFT. You need to buy clutchbox and use chams, for chams resolution and hertz doesn't matter
  14. This is a video promo. This device is not a real device, just illustration. For EFT any device with 3 Cores and 4GB of ram should be fine. below a few recommendation MIN REQUIREMENTS => 3cores / 4gb ram / integrated GP HIGH PERFORMANCE => 4cores or more / 8gb ram or more and any GPU (Nvidia/Amd)
  15. Caso sendo tratado no ticket
  16. Apenas faca o que esta descrito e deve funcionar. Relog (logout e login novamente)
  17. Hello, yes, you need to have a firmware which supports EAC.
  18. Hey, no leet don't supply firmware for ACE (Arena/Delta) We don't have any recommendation to different provider
  19. Hey Second PC -> all good, good specs AMD CPU -> No Issue, DMA should works like a normal Gigabyte -> a bit problematic... some users have issue with that so we recommend avoid gigabyte for DMA stuffs.
  20. Hey, if you want to see ESP on Gaming-PC you need to have a fuser. Otherwise you can use alternative methods (Parsec/Moonlight) but these methods you are playing from your second-pc via remote control. So we recommend to you buy a fuser if you want better experience.
  21. Hello, our ABI is memory read only. So if you have a good firmware for ACE you should be fine
  22. Hey sir, please open a ticket our discord so we can sorted it. Thank you.
  23. case is being handled in discord
×
×
  • Create New...

Important Information

We use cookies on our website, without which the operation of our website is not possible. In addition, we use cookies to offer functions such as playing videos via Youtube. Your click on "Agree" allows us to process data as well as transfer data to third party providers in third countries in accordance with our Privacy Policy. Please read and accept our Terms of Use and and Guidelines. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. The cookies can be rejected at any time or adjusted in the settings.