Skip to content
vike256 edited this page Nov 26, 2023 · 52 revisions

Setup specific guides

Serial
Wi-Fi
Ethernet
Not using any external hardware? Just continue reading this page.

Download and install Arduino IDE

THIS STEP IS ONLY REQUIRED IF YOU ARE USING EXTERNAL HARDWARE TO SEND MOUSE INPUT

Config

Communication

  • type is the communication type used.
    • none to use WinApi calls for mouse input
    • driver to use the Interception driver for mouse input (https://github.com/oblitum/Interception)
    • serial to use serial communication
      • com_port is the COM port of your board
    • socket to use ethernet or Wi-Fi
      • ip is the IP of your board
      • port is the port of your board

Screen

  • detection_threshold sets the threshold used for detecting shapes on the screen
    Image with detection_threshold = 1, 1
    image(detection_threshold = 1, 1)
    Image with detection_threshold = 3, 3
    image(detection_threshold = 3, 3)

  • upper_color and lower_color are used for target detection

  • fov_x and fov_y set the width and height of the target detection area that is in the center of the screen

  • aim_fov_x and aim_fov_y set the width and height of the aiming area
    image(shape_aim_fov_x/y)

  • fps is the target fps Unibot will run

    • Lower this to lower CPU usage
    • This setting should not be higher than your monitor's refresh rate
  • capture_method sets the library used for screengrab

    • dxcam is the default and faster method
    • mss tends to be slower but is more compatible
      TRY SETTING THIS TO mss IF UNIBOT IS NOT WORKING
  • auto_detect_resolution

    • true to detect your monitors resolution automatically
    • false if auto detection is not working
      • resolution_x your resolution width
      • resolution_y your resolution height

Aim

  • offset moves the fov according to the offset
    image(offset = 20)
    Image: offset = 20
  • smooth sets the value used for calculating smoothess for the aimbot
    • Value should be between 0 and 1
  • speed adjusts the mouse movement amount
    • This value depends on your hardware, dpi, and in-game sensitivity. Try to find a value that works for you
    • Decrease if aim is jittery
  • y_speed multiplies the speed for movements on the y-axis
  • aim_height determines the vertical position of the aim
    • Value should be between 0 and 1
    • Value 0.5 aims at the center of the target
      image(aim_height = 0.9)
      Image: aim_height = 0.9

Recoil

  • mode is the recoil method used
    • move for games where the bullet always hits the center of the screen
      • recoilX and recoilY set the move speed
    • offset for games where the recoil goes above crosshair
      • recoilY increases aiming offset when left button is pressed
      • max_offset is the maximum offset the recoil can have
      • recover sets how fast the recoil recovers when left button is not pressed

Trigger

  • trigger_delay delays the triggerbot click
    • trigger_randomization adds a randomized 0-x ms delay
  • trigger_threshold is the value used to check if a target is close enough to the center of the screen.
    • Using values below 8 will have false positives when crosshair is close to a target.

Rapid fire

  • target_cps sets the maximum clicks per second

Key binds

Keys are read as their keycode value (Windows Virtual-Key Codes)

  • key_reload_config reloads the config
    • F1 by default
  • key_toggle_aim toggles aimbot
    • F2 by default
  • key_toggle_recoil toggles recoil
    • F3 by default
  • key_exit closes Unibot
    • F4 by default
  • key_trigger activates the triggerbot while holding
    • Mouse5 by default
  • key_rapid_fire activates rapid fire while holding
    • Mouse4 by default
  • aim_keys sets aimbot on when any of the keys is pressed
    • off sets aimbot to be always on
    • Mouse1 and mouse2 by default

Debug

  • enabled
    • true enables debug mode
  • always_on
    • true makes the debug display update even while aimbot and triggerbot are not in use
  • display_mode sets the FOV area image used for debugging
    • game displays the normal image
    • mask displays targets in white on a black background

Run Unibot

Requirements:

To setup Unibot:

  • Open Unibot folder in terminal
  • Use command pip install -r requirements.txt

To run Unibot:

  • Run run.bat
    Or just run Unibot/src/main.py with Python