Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fruitbot-1.6.1.tar.gz (26.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fruitbot-1.6.1-py3-none-any.whl (27.8 kB view details)

Uploaded Python 3

File details

Details for the file fruitbot-1.6.1.tar.gz.

File metadata

  • Download URL: fruitbot-1.6.1.tar.gz
  • Upload date:
  • Size: 26.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for fruitbot-1.6.1.tar.gz
Algorithm Hash digest
SHA256 b679a5fd9b0d09ef5b74786d0cf37c943b472cc8484dec1456ed1c0fd59fd3b5
MD5 f69f862b0535f9a430eba3885434ae12
BLAKE2b-256 1c079f4fe6bef0cbccbdc6af807ed57f517a22963ec3c009f1d18412a4187069

See more details on using hashes here.

File details

Details for the file fruitbot-1.6.1-py3-none-any.whl.

File metadata

  • Download URL: fruitbot-1.6.1-py3-none-any.whl
  • Upload date:
  • Size: 27.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for fruitbot-1.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 802d3832e3d85438b1bdfd86ac5f3a962e89be198441393ec33e2b86b7ccde11
MD5 67da0524a550badacf3803bbdc9ca219
BLAKE2b-256 12a0056fa4d80d7cab9b4ec115a5c5fc05faa6ab14cb673f5009d9f900a689e1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page