Banana
评价数不足
Banana AutoClick
由 omgitsbees 制作
A Python script you can run in Visual Studio Code to auto click the banana for you.
   
奖励
收藏
已收藏
取消收藏
Setup
Download Visual Studio Code here: https://code.visualstudio.com/download

Install, and then open the terminal in visual studio code, and install the following libraries:
pip install pyautogui
pip install keyboard

Now create a new file, and make sure it is a Python file. Copy/paste or type in the following code:
import pyautogui
import time
import keyboard # Import the keyboard module

# Delay before starting (in seconds)
initial_delay = 5
# Number of clicks
clicks = 10000
# Delay between clicks (in seconds)
click_delay = 0.01 # Adjust this value as needed

# Countdown before starting
print(f"Auto Clicker will start in {initial_delay} seconds...")
time.sleep(initial_delay)

# Get current mouse position
initial_position = pyautogui.position()

# Click loop
for _ in range(clicks):
# Check if the 'q' key is pressed to cancel
if keyboard.is_pressed('q'):
print("Auto Clicker cancelled.")
break

pyautogui.click(initial_position)
time.sleep(click_delay)

print(f"Auto Clicker completed {clicks} clicks.")


Make note of the line that says "if keyboard.is_pressed('q'):" if you want to stop the auto-clicker, press the Q key on your keyboard.

Run the app in Visual Studio Code by pressing the run button in the upper right hand corner. and then switch over to Banana and move your mouse cursor over the banana. You're good to go!
4 条留言
ThePestBlack.ttv 2024 年 9 月 15 日 上午 11:09 
It doesnt work to me :((
omgitsbees  [作者] 2024 年 9 月 14 日 上午 10:35 
@nuke employer fair, you're not wrong! This is for the homies who like to see that click number increase. When I originally wrote this, I didn't understand that fact about the 3h thing.
Nuke Employee 2024 年 9 月 14 日 上午 10:13 
Thats hot but let me tell you this: you get one drop every 3h regardless of the click amount.

Hope to save you lads some time.
AdsızCengaver 2024 年 9 月 11 日 上午 9:53 
Nice