Botty - Free and Opensource Pixelbot menu

User Tag List

Page 7 of 7 FirstFirst ... 34567
Results 91 to 96 of 96
  1. #91
    nitx96's Avatar Member
    Reputation
    1
    Join Date
    Oct 2023
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bot works well, but I can't get python version working:

    Exception in thread Thread-7 (start):
    Traceback (most recent call last):
    File "C:\Users\white\miniconda3\envs\botty\lib\threading.py", line 1016, in _bootstrap_inner
    self.run()
    File "C:\Users\white\miniconda3\envs\botty\lib\threading.py", line 953, in run
    self._target(*self._args, **self._kwargs)
    File "C:\Users\white\botty\src\bot.py", line 163, in start
    self.trigger_or_stop('init')
    File "C:\Users\white\botty\src\bot.py", line 183, in trigger_or_stop
    self.trigger(name, **kwargs)
    File "C:\Users\white\miniconda3\envs\botty\lib\site-packages\transitions\core.py", line 922, in _get_trigger
    return event.trigger(model, *args, **kwargs)
    File "C:\Users\white\miniconda3\envs\botty\lib\site-packages\transitions\core.py", line 402, in trigger
    return self.machine._process(func)
    File "C:\Users\white\miniconda3\envs\botty\lib\site-packages\transitions\core.py", line 1223, in _process
    self._transition_queue[0]()
    File "C:\Users\white\miniconda3\envs\botty\lib\site-packages\transitions\core.py", line 416, in _trigger
    self._process(event_data)
    File "C:\Users\white\miniconda3\envs\botty\lib\site-packages\transitions\core.py", line 439, in _process
    if trans.execute(event_data):
    File "C:\Users\white\miniconda3\envs\botty\lib\site-packages\transitions\core.py", line 273, in execute
    event_data.machine.callbacks(itertools.chain(event_data.machine.before_state_cha nge, self.before), event_data)
    File "C:\Users\white\miniconda3\envs\botty\lib\site-packages\transitions\core.py", line 1146, in callbacks
    self.callback(func, event_data)
    File "C:\Users\white\miniconda3\envs\botty\lib\site-packages\transitions\core.py", line 1167, in callback
    func(*event_data.args, **event_data.kwargs)
    File "C:\Users\white\botty\src\bot.py", line 226, in on_init
    if (match := template_finder.search_and_wait(list(transition_to_screens.keys()), best_match=True)).valid:
    File "C:\Users\white\botty\src\template_finder.py", line 184, in search_and_wait
    img = grab()
    File "C:\Users\white\botty\src\screen.py", line 81, in grab
    img = np.array(sct.grab(monitor_roi))
    File "C:\Users\white\miniconda3\envs\botty\lib\site-packages\mss\base.py", line 90, in grab
    screenshot = self._grab_impl(monitor)
    File "C:\Users\white\miniconda3\envs\botty\lib\site-packages\mss\windows.py", line 235, in _grab_impl
    srcdc, memdc = self._handles.srcdc, self._handles.memdc
    AttributeError: '_thread._local' object has no attribute 'srcdc'
    Exception in thread Thread-5 (start_monitor):
    Traceback (most recent call last):
    File "C:\Users\white\miniconda3\envs\botty\lib\threading.py", line 1016, in _bootstrap_inner
    self.run()
    File "C:\Users\white\miniconda3\envs\botty\lib\threading.py", line 953, in run
    self._target(*self._args, **self._kwargs)
    File "C:\Users\white\botty\src\death_manager.py", line 72, in start_monitor
    self.handle_death_screen()
    File "C:\Users\white\botty\src\death_manager.py", line 36, in handle_death_screen
    img = grab()
    File "C:\Users\white\botty\src\screen.py", line 81, in grab
    img = np.array(sct.grab(monitor_roi))
    File "C:\Users\white\miniconda3\envs\botty\lib\site-packages\mss\base.py", line 90, in grab
    screenshot = self._grab_impl(monitor)
    File "C:\Users\white\miniconda3\envs\botty\lib\site-packages\mss\windows.py", line 235, in _grab_impl
    srcdc, memdc = self._handles.srcdc, self._handles.memdc
    AttributeError: '_thread._local' object has no attribute 'srcdc'

    Anyone else have this issue?

    Botty - Free and Opensource Pixelbot
  2. #92
    garrett29's Avatar Member
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    7
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    discord says detected.

  3. #93
    Megouski's Avatar Member
    Reputation
    5
    Join Date
    Mar 2018
    Posts
    8
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cant detect a pixelbot moron

  4. #94
    Flamuri's Avatar Member
    Reputation
    1
    Join Date
    Aug 2017
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is it still safe or not?

  5. #95
    bruce__lee's Avatar Member
    Reputation
    1
    Join Date
    Mar 2024
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    keeps junk items inventory (not selling, dropping, moving to stash)

    - My build : Hammerdin (with cta & teleport)
    - Problem: keeping junk items inventory(so can't acquire new dropped items that maybe have good options)

    I did whole method following many replying post on this thread to fix the damn problem, but it didn't work to my idiot botty.

    [Methods I did to fix the problem]

    1. delete the red sections(Originally Posted by blacknight1) > didn't work

    src/messages/_init_.py

    from .generic_api import GenericApi
    from .discord_embeds import DiscordEmbeds
    from .messenger import Messenger


    src/messages/messanger.py

    from dataclasses import dataclass
    from config import Config
    import numpy as np

    from messages.generic_api import GenericApi
    from messages.discord_embeds import DiscordEmbeds

    class Messenger:
    def __init__(self):
    if Config().general["message_api_type"] == "generic_api":
    self._message_api = GenericApi()
    elif Config().general["message_api_type"] == "discord":
    self._message_api = DiscordEmbeds()


    2. update line 121(Originally Posted by blacknight1) > didn't work

    for the inventory issue... go to processing_helpers.py

    from this:
    121: x+w < right_inv[0] or right_inv[0]+right_inv[2] < x or y+h+60 < right_inv[1] or right_inv[1]+right_inv[3] < y)

    to this (update the 60 to 80):

    121: x+w < right_inv[0] or right_inv[0]+right_inv[2] < x or y+h+80 < right_inv[1] or right_inv[1]+right_inv[3] < y)



    [Displayed ERROR messages (from log file)]

    msg: Dropping 'item type'. Failed with AttributeError 'NoneType' object has no attribute 'as_dict' + item segmentation failed for slot_pos: (1037, 367)

    This msg is printed out when my bot to check the picked item just before. After then, (even if checked item has bad roll or trash options) keeps item in inventory.
    These situation keeps going.. and eventually inventory filled to junks.




    Please suggest to any working solution. Nothing helped to me for fix the problem, unfortunately.
    Last edited by bruce__lee; 4 Weeks Ago at 05:33 AM.

  6. #96
    Loko24's Avatar Member
    Reputation
    1
    Join Date
    Apr 2024
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is this bot working now where can I download it?tia

Page 7 of 7 FirstFirst ... 34567

Similar Threads

  1. thought for free and i mean free CD key
    By xdarkghostx in forum WoW Scam Prevention
    Replies: 9
    Last Post: 03-30-2008, 08:27 PM
  2. [Mac]Bypass firewalls to play WoW or anything else free and legally :)
    By lag in forum World of Warcraft Bots and Programs
    Replies: 8
    Last Post: 12-14-2007, 04:15 AM
  3. TVU Player. TV on your PC Live, Free and ~200 channels !
    By Wheeze201 in forum Community Chat
    Replies: 2
    Last Post: 12-11-2007, 05:58 PM
  4. Replies: 27
    Last Post: 11-25-2007, 05:34 AM
  5. Replies: 4
    Last Post: 10-24-2006, 09:23 AM
All times are GMT -5. The time now is 06:25 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search