A simple, easy-to-use and powerful library for automating gameplay in the Fruit Craft game through APIs.
Project description
fruitbot
This library lets you use the game's API to automate everything in the Fruitcraft game. Basically, it provides the tools you need to write code that acts like a bot—playing the game for you, handling tasks, fighting battles, managing your tribe, upgrading assets, and more. With it, you can create programs that make the gameplay faster and easier, helping you grow in the game without manual effort.
Quick Start
from fruitbot import Client
from fruitbot.enums import CardPackTypes
bot = Client(session_name="fruit", restore_key="TOUR ACCOUNT RESTORE KEY")
data = bot.loadPlayer(save_session=True)
print(f"name: {data['name']}, amount of gold: {data['gold']}, id: {data['id']}")
print(bot.buyCardPack(CardPackTypes.BROWN_PACK))
Encryption Notice
The fruitbot library uses the latest encryption method by default to match the current Fruitcraft game version.
To use the older encryption (e.g. for legacy accounts or testing), set enc_version=1:
Client(session_name="fruit", restore_key="TOUR ACCOUNT RESTORE KEY", enc_version=1)
Processing Updates
You can utilize the decorators on_message_update(), on_player_status_update(), on_battle_alert(), on_battle_update(), on_auction_update() and on_tribe_membership_update() to receive and process the updates you need.
To start receiving updates, call the comebackToGame() method and set the open_socket argument to True.
For example:
from fruitbot import Client
from fruitbot.exceptions import OnlineOnAnotherDevice, PlayingOnAnotherDevice
from colorama import Fore
from time import sleep
bot = Client(session_name="fruit", restore_key="YOUR ACCOUNT RESTORE KEY")
try:
account_name = bot.loadPlayer(save_session=True)["name"]
except (OnlineOnAnotherDevice, PlayingOnAnotherDevice) as e:
print(e)
exit()
@bot.on_message_update()
def answerMessage(message: dict):
if "سلام" in message["text"] and message["sender"] != account_name:
bot.sendMessageToTribe(f"Hi {message['sender']}")
sleep(1)
print(f"{Fore.GREEN}\u202A{message['sender']}:\u202A{Fore.RESET} {message['text']}")
bot.comebackToGame(open_socket=True)
sleep(60)
bot.stopUpdates()
As demonstrated in the previous example, you can use the stopUpdates() method to terminate the reception of updates. Without invoking this method, updates will continue to be received forever, unless an issue arises.
If you ever need a specific update for any reason, @on_special_event() is here to assist you. The only required argument is push_message_type.
@bot.on_special_event("battle_help")
def helpTribemate():
# your code
pass
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fruitbot-1.6.0.tar.gz.
File metadata
- Download URL: fruitbot-1.6.0.tar.gz
- Upload date:
- Size: 26.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d8c6d29aa4d023f54b0206540ab48fd84d33a4d5cffc8eb8aa36b422bbff146
|
|
| MD5 |
a111d677f7fcfef83e4474f07fefc9d9
|
|
| BLAKE2b-256 |
ea835f2bf6d7993eebc3001a2fff0539d687b48de5935f4ad056174baa06640e
|
File details
Details for the file fruitbot-1.6.0-py3-none-any.whl.
File metadata
- Download URL: fruitbot-1.6.0-py3-none-any.whl
- Upload date:
- Size: 27.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bcc3af1a418eecba5cc3fbacdadb2d78616e2c950bd83a54f405d011a770a43
|
|
| MD5 |
30c6d807c9d3ad51157875dba5a23fa7
|
|
| BLAKE2b-256 |
8d8675b498a3fe4f3b3c140c1acce441eea3749bb49bd5f3cab2f8a6cb317a6b
|