Page 7 of 8 FirstFirst ... 5678 LastLast
Results 91 to 105 of 119
  1. #91
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    793
    Reputation
    106
    Thanks
    2,152
    My Mood
    Inspired
    Quote Originally Posted by tiny_paw View Post
    I am also scaled down to 75% UI
     
    https://imgur.com/a/q9dAirO
    Did you create resize.txt file with 75 inside?

  2. #92
    draydeg's Avatar
    Join Date
    Aug 2022
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0
    This saved my sanity, thank you!

  3. #93
    K3nt's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    i'm using your tool every 1.5M thanks you !

  4. #94
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    793
    Reputation
    106
    Thanks
    2,152
    My Mood
    Inspired
    This is exactly the reason why I develop this tool hahahahahha, I hate spend points on dbd

  5. #95
    DarkGER95's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    1

    Thumbs up

    Great Tool, leveling manually is just so tedious. Been using it the past few days.

    Got 2 little suggestions though if you're still developing this any further.

    The bot only analyzes (screenshot) the bloodweb once right?
    It seems like it tries every slot once and then restarts the process.
    If the processing of the image doesnt take to long having the bot consider entity taken items through more screens would be a great time saver.

    No idea about python and the libs used for this, but if the Screenshot could be kept in memory instead of written and read from storage would probably speed things up a bit (also keeps storage healthy, 1-50 is about 150MB in rewrites for me).
    Last edited by DarkGER95; 01-04-2023 at 02:00 PM.

  6. #96
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    793
    Reputation
    106
    Thanks
    2,152
    My Mood
    Inspired
    Quote Originally Posted by DarkGER95 View Post
    Great Tool, leveling manually is just so tedious. Been using it the past few days.

    Got 2 little suggestions though if you're still developing this any further.

    The bot only analyzes (screenshot) the bloodweb once right?
    It seems like it tries every slot once and then restarts the process.
    If the processing of the image doesnt take to long having the bot consider entity taken items through more screens would be a great time saver.

    No idea about python and the libs used for this, but if the Screenshot could be kept in memory instead of written and read from storage would probably speed things up a bit (also keeps storage healthy, 1-50 is about 150MB in rewrites for me).
    The first idea is good but I didn't do that because it doesn't recognize stuff that you bought or not, it only recognize circles and compare it with a list.
    I could try it with color recognizing together with circles, but I'm a little busy in these days.
    The other idea is not possible with pyautogui and opencv2 I already tried, but I'm not 100% sure, if you know how to do that please send here a code example

    Thank you for compliments!

  7. #97
    flenxdzz's Avatar
    Join Date
    Jan 2023
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    thank you so much man i have account with 100m bloodpoint and is save me so much time :)

  8. #98
    cha0tic_'s Avatar
    Join Date
    Jan 2023
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    Thanks, I'm gonna try this out.

  9. #99
    moonpkt's Avatar
    Join Date
    Dec 2022
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by 8otto View Post
    The first idea is good but I didn't do that because it doesn't recognize stuff that you bought or not, it only recognize circles and compare it with a list.
    I could try it with color recognizing together with circles, but I'm a little busy in these days.
    The other idea is not possible with pyautogui and opencv2 I already tried, but I'm not 100% sure, if you know how to do that please send here a code example

    Thank you for compliments!

    The idea from @DarkGER95 is very good, cuz the tool trying to get the blocked items and perks, it just eats up effeciency and time.
    I please you to update the tool, is there maybe a way to donate?
    I really appreciate your time creating all of this

  10. #100
    DarkGER95's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by 8otto View Post
    The first idea is good but I didn't do that because it doesn't recognize stuff that you bought or not, it only recognize circles and compare it with a list.
    I could try it with color recognizing together with circles, but I'm a little busy in these days.
    The other idea is not possible with pyautogui and opencv2 I already tried, but I'm not 100% sure, if you know how to do that please send here a code example

    Thank you for compliments!
    if your programm works with non grey scale images I got the following for you (imread flag parameter != 0):

    Code:
    import cv2
    import pyautogui as pgui
    import numpy as np
    
    image = pgui.screenshot('screen.png') #Saves a Screeenshot (No Parameter = only returns Image data without file saving)
    imageFlipped = np.flip(image, 2) #Flip axis 2 to match cv.imread
    imageFlippedArray = np.asarray(imageFlipped) #Convert Image to numpy Array
    
    cvImage = cv2.imread('screen.png') #Read our File Screenshot
    
    print(np.array_equal(cvImage, imageFlippedArray)) #Perform equal check
    cv2 uses numpy arrays so you should be able to work with the "imageFlippedArray"
    Last edited by DarkGER95; 01-15-2023 at 03:42 PM. Reason: Code edited.

  11. The Following User Says Thank You to DarkGER95 For This Useful Post:

    Serenity Solution (01-21-2023)

  12. #101
    Its me popcorn's Avatar
    Join Date
    May 2020
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    2
    My Mood
    Relaxed
    Quote Originally Posted by 8otto View Post
    Guys I really don't know, I think 0 ban chance because it's not in-match macro.
    But however I don't assume responsibility for any ban.
    I thought anticheat (the infamous EAC) scans the game during the launch and looks for hooked up proccesses while playing? Or is it pure 100% third party program that works in the background and does not interfere with dbd? Because that would change a lot.

  13. #102
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    793
    Reputation
    106
    Thanks
    2,152
    My Mood
    Inspired
    Quote Originally Posted by DarkGER95 View Post
    if your programm works with non grey scale images I got the following for you (imread flag parameter != 0):

    Code:
    import cv2
    import pyautogui as pgui
    import numpy as np
    
    image = pgui.screenshot('screen.png') #Saves a Screeenshot (No Parameter = only returns Image data without file saving)
    imageFlipped = np.flip(image, 2) #Flip axis 2 to match cv.imread
    imageFlippedArray = np.asarray(imageFlipped) #Convert Image to numpy Array
    
    cvImage = cv2.imread('screen.png') #Read our File Screenshot
    
    print(np.array_equal(cvImage, imageFlippedArray)) #Perform equal check
    cv2 uses numpy arrays so you should be able to work with the "imageFlippedArray"
    Thank you, i have to try when I'm not busy

    - - - Updated - - -

    Quote Originally Posted by Its me popcorn View Post
    I thought anticheat (the infamous EAC) scans the game during the launch and looks for hooked up proccesses while playing? Or is it pure 100% third party program that works in the background and does not interfere with dbd? Because that would change a lot.
    Totally external it uses screenshots to work

  14. #103
    Cinnax3's Avatar
    Join Date
    Aug 2017
    Gender
    female
    Posts
    2
    Reputation
    10
    Thanks
    0

    2023

    is this still working in 2023?
    I already got a VAC ban :'D

  15. #104
    VaguinerS's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    3
    I got banned a few days ago after successfully using this program.

    However, I also used and abused lag switch (more than 3 months using lag switch and no ban until then)

    Maybe this is a coincidence, but I would like to put it on record.

  16. The Following User Says Thank You to VaguinerS For This Useful Post:

    niggisbeats (02-21-2023)

  17. #105
    Threadstarter
    We are the CONTRIBUFORCE
    Contributor
    8otto's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    793
    Reputation
    106
    Thanks
    2,152
    My Mood
    Inspired
    Quote Originally Posted by VaguinerS View Post
    I got banned a few days ago after successfully using this program.

    However, I also used and abused lag switch (more than 3 months using lag switch and no ban until then)

    Maybe this is a coincidence, but I would like to put it on record.
    I think that your ban was caused by lag switch and report system 😂
    This is undetected and not a cheat at all..

Page 7 of 8 FirstFirst ... 5678 LastLast

Similar Threads

  1. Automatic Leveling
    By FreizeitHacker in forum Dead by Daylight Discussion & Help
    Replies: 3
    Last Post: 06-10-2019, 01:11 AM
  2. How to level up bloodweb without losing bloodpoints (need to be very fast)
    By Sopapid in forum Dead by Daylight Discussion & Help
    Replies: 2
    Last Post: 01-29-2019, 03:04 PM
  3. Em... Is cheating Legacy and bloodweb level still safe?
    By jocke12e23 in forum Dead by Daylight Discussion & Help
    Replies: 11
    Last Post: 04-29-2018, 02:55 AM
  4. [Tutorial] How to level up faster - bloodweb bug
    By darkmagicthedark in forum Dead by Daylight Hacks & Cheats
    Replies: 1
    Last Post: 05-20-2017, 02:11 PM
  5. Automatic Lab Level Bot
    By cyclonrexp in forum Vindictus Discussions
    Replies: 6
    Last Post: 04-29-2011, 08:58 PM