I have released my new build and to be quite honest it hasn't been tested for all systems. I have made some emulation script for computer performance for both 1PC solutions and 2PC solutions that just replicate roughly what the CPU/GPU will run at. The Build currently supports only Razer mouses but if you have another mouse you are currently using and don't want to switch then again. leave a comment with your current setup and i will tell you if it's supported or if you require additional components .
I'm also after 5 people with rep to just test and provide feedback as i made this in like 3days excluding bypass. Any UI issues or bugs or anything under them lines. 5 USERS will be granted a FREE 1 week KEY. Users MUST reinstall windows and MUST have a razer mouse preferably.
Quote:
testers for 1PC requiresments:
Offical Razer mouse
Fresh install
record of previous cheats used eg:
I used Neox last week
record of previous spoofers used eg:
I used edggy spoofer
methods of spoof eg:
I use VGK disabler and cloudflare
Quote:
testers for PC2 requirements:
Capture Card 3.0
Fresh Install
HDMI cables x3
2nd PC at least 1080
Raspberry/Ardunio
whatever mouse
record of previous cheats used
record of previous spoofers used
methods of spoof eg
Quote:
Testers for Hardware buildv1
ESP32 variations supported
Just after 5 people in total hoping i can get these builds tested on another computer. Please dm me if you are able to testQuote:
Testers for Hardware buildv2
Raspberry PIx
AI TOPS 26+
I'll link a video just so you know this isn't a shitpost:
Just for the record, NO SALES will be made through this thread. This is not a advertisement. I have closed renewals/new people from registering without a invitation code on the website.
Bonus for reading and considering, Raspberry pi5 Emulation skeleton emulation. Cool little HID i found when going through random libs.
Raspberry pi 5 64x OS
step1: sudo apt update && sudo apt upgrade -y
Step 2:sudo nano /boot/firmware/config.txt
step 3: Find and remove or comment at very bottom.
dtoverlay=dwc2,dr_mode=host
remove [all] place dtoverlay=dwc2,dr_mode=peripheral
step 4:sudo reboot
step 5: nano scriptname.py
paste basic emulation inside
Code:
#!/bin/bash modprobe libcomposite cd /sys/kernel/config/usb_gadget/ mkdir -p razer_mouse cd razer_mouse # Set USB vendor and product IDs (Razer Basilisk V3) echo 0x1532 > idVendor echo 0x0099 > idProduct mkdir -p strings/0x409 echo "HERE" > strings/0x409/serialnumber echo "HERE" > strings/0x409/manufacturer echo "HERE" > strings/0x409/product mkdir -p configs/c.1/strings/0x409 echo "Razer Config" > configs/c.1/strings/0x409/configuration echo 250 > configs/c.1/MaxPower mkdir functions/hid.usb0 echo 1 > functions/hid.usb0/protocol echo 1 > functions/hid.usb0/subclass echo 3 > functions/hid.usb0/report_length # Write a 3-byte HID report descriptor. # This descriptor defines: # - 3 buttons (3 bits, plus 5 bits padding) # - X and Y movement (each 8-bit relative) echo -ne \ "\x05\x01\x09\x02\xA1\x01"\ "\x09\x01\xA1\x00"\ "\x05\x09\x19\x01\x29\x03\x15\x00\x25\x01\x95\x03\x75\x01\x81\x02"\ "\x95\x01\x75\x05\x81\x03"\ "\x05\x01\x09\x30\x09\x31\x15\x81\x25\x7F\x75\x08\x95\x02\x81\x06"\ "\xC0\xC0" > functions/hid.usb0/report_desc ln -s functions/hid.usb0 configs/c.1/ ls /sys/class/udc | tee UDC
step 7: make passthrough:
Code:
#!/usr/bin/env python3
import os, time
real_mouse = "/dev/input/mice"
gadget_mouse = "/dev/hidg0"
with open(real_mouse, "rb") as mouse_fd, open(gadget_mouse, "wb", buffering=0) as gadget_fd:
while True:
# Read exactly 3 bytes from the physical mouse
data = mouse_fd.read(3)
if data:
try:
gadget_fd.write(data)
gadget_fd.flush()
except BlockingIOError:
time.sleep(0.001)
time.sleep(0.001)
step 9: sudo bash /home/bobby/setup_mouse_gadget.sh
step 10: plug in mouse and run script of you dir. in this case sudo python3 /home/bobby/mouse_passthrough.py run while your mouse plugged in.
This is a active UD "build" bypasses the vector because there is no serial communication. raspberry pi5 comes with a usb c power supply. you can just load and convert the communication to a HID device and solely a HID device. After doing the steps. make a script over ethernet or TCP and write to the virtual mouse we created with gadget. This works create and many people still use this variation. Just make sure your emulation is good for manual inspections otherwise say bye to your account and HWID. Still pretty cool. i have no use for this so thought it would maybe help someone here wanting to make their own esp32,teensy4.0 or whatever.
^^^^^^^^^^^^^^^^^^^^^
This is currently UD as of 10/03/2025






