[WIP] PixelBot menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 30
  1. #1
    xtoxnitro's Avatar Member
    Reputation
    3
    Join Date
    Feb 2011
    Posts
    18
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [WIP] PixelBot

    Just showing of my work in progress from my pixel bot.

    At the moment the only thing it can is reading stuff out of the game and walking to a waypoint:

    Streamable - free video publishing

    [WIP] PixelBot
  2. #2
    dropdead123's Avatar Member
    Reputation
    2
    Join Date
    Dec 2011
    Posts
    12
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How is your bot read the health/mana/level data?
    Also through PixelRead or do u use memory read in this case?

  3. #3
    Baengbum's Avatar Active Member
    Reputation
    39
    Join Date
    Aug 2011
    Posts
    46
    Thanks G/R
    5/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dropdead123 View Post
    How is your bot read the health/mana/level data?
    Also through PixelRead or do u use memory read in this case?
    You can encode all the information available from LUA into pixels that are then read from the external program. You can see the pixels on the top left of the screen.

  4. #4
    dropdead123's Avatar Member
    Reputation
    2
    Join Date
    Dec 2011
    Posts
    12
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Aahhh nice - Good job

  5. #5
    Kwapuzzi's Avatar Member
    Reputation
    12
    Join Date
    Apr 2007
    Posts
    62
    Thanks G/R
    2/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    function GetPlayerHealth()

    local health = UnitHealth("player");
    local maxHealth = UnitHealthMax("player");
    local percHealth = ceil((health / maxHealth) * 100)
    local healthdiff = maxHealth - health
    (YOUR PIXEL FRAME)NewAddon.Frame_PHealth.texture:SetColorTexture(percHealth/100, percHealth/100, percHealth/100)

    end

  6. #6
    x3r0's Avatar Member
    Reputation
    12
    Join Date
    Feb 2007
    Posts
    25
    Thanks G/R
    4/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When you want to make something BIG out of it, never ever give "them" (blizz) a clue where you are living ;-)
    The Videos shows you are german ;-)

  7. #7
    ChrisIsMe's Avatar Contributor
    Reputation
    164
    Join Date
    Apr 2017
    Posts
    210
    Thanks G/R
    67/100
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    You realize that the pixels don't have to take up half the screen... right?

    I wrote a pixel bot for fun awhile ago, I do all of the logic in game through the lua api and then display a singular pixel at 0,0 (top left) which is read from. You have to consider every screen capture from the driver program as being a flaw that can result in lots of frame loss, from person to person depending on their PC.

    You're also loosing out on a lot of potential community developers whom else would potentially be able to write rotations in the Lua, but when you introduce a more complicated language will struggle and give up.

    This is only a flaw if your goal of having a product where the community can alter the logic, but if it's just you or others that know the driver programs language, you're fine I guess..

    Anyways, this is a nice start, and you've done the hard part of figuring out how to use pixels to export data and read them from another program, so good job!
    Last edited by ChrisIsMe; 09-17-2019 at 04:09 PM.

  8. #8
    xtoxnitro's Avatar Member
    Reputation
    3
    Join Date
    Feb 2011
    Posts
    18
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ChrisIsMe View Post
    You realize that the pixels don't have to take up half the screen... right?

    I wrote a pixel bot for fun awhile ago, I do all of the logic in game through the lua api and then display a singular pixel at 0,0 (top left) which is read from. You have to consider every screen capture from the driver program as being a flaw that can result in lots of frame loss, from person to person depending on their PC.

    You're also loosing out on a lot of potential community developers whom else would potentially be able to write rotations in the Lua, but when you introduce a more complicated language will struggle and give up.

    This is only a flaw if your goal of having a product where the community can alter the logic, but if it's just you or others that know the driver programs language, you're fine I guess..

    Anyways, this is a nice start, and you've done the hard part of figuring out how to use pixels to export data and read them from another program, so good job!

    thx for your constructive critisism i really appreciate it (no irony here!)

    But i´m a little noob at coding and don´t do it everyday (i work in IT, but no programming needed there)

    Also this won´t be product which will be being sold or otherwise, this is just a pure fun project

    and now to my update:

    VID_20190924_191331 - Streamable

    he can move! its rather buggy but still, he moves xD

  9. #9
    stonebent's Avatar Member
    Reputation
    9
    Join Date
    Sep 2008
    Posts
    36
    Thanks G/R
    3/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looks nice! Good job so far. Looking forward to more updates!

    What's your goal with this? Questing? Grinding?

  10. #10
    UnHappy's Avatar Active Member

    Reputation
    18
    Join Date
    Sep 2019
    Posts
    69
    Thanks G/R
    53/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is not a scam I am in their discord and setting up the bot.

  11. #11
    xtoxnitro's Avatar Member
    Reputation
    3
    Join Date
    Feb 2011
    Posts
    18
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by UnHappy View Post
    This is not a scam I am in their discord and setting up the bot.
    wrong thread?

    Originally Posted by stonebent View Post
    Looks nice! Good job so far. Looking forward to more updates!

    What's your goal with this? Questing? Grinding?
    At the moment i have no real goal i want to accomplish. its a rather fun project

  12. #12
    lewis2125's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can serve as tester (willing to pay) I ran a multibox so we can test that part (if is available)

  13. #13
    xtoxnitro's Avatar Member
    Reputation
    3
    Join Date
    Feb 2011
    Posts
    18
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lewis2125 View Post
    I can serve as tester (willing to pay) I ran a multibox so we can test that part (if is available)
    thx for your offer,.if the bot ever gets to the state i need tester, i will come back at your offer. And nice that you are willing to pay, but IF this bot gets (and this is a BIG i dont know) to a usable state, i wonßt charge any money for it. not because i dont want money, but i think its illegal to get money from a product without having a registered company. So if it gets usable, you all can have it for free. And if i don´t want to continue this anylonger, i will share what i have so anyone can feel free to continue.

  14. #14
    xtoxnitro's Avatar Member
    Reputation
    3
    Join Date
    Feb 2011
    Posts
    18
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Short Updatevideo:

    WoW-Bot - Streamable

  15. #15
    Cashless's Avatar Member
    Reputation
    3
    Join Date
    Oct 2018
    Posts
    17
    Thanks G/R
    9/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looks really cool.. I think I will code yomething by myself, too

Page 1 of 2 12 LastLast

Similar Threads

  1. [WIP] Death Knight
    By Squirr3l in forum World of Warcraft Model Editing
    Replies: 83
    Last Post: 10-06-2007, 06:56 PM
  2. [WIP] Northrend
    By faizer in forum World of Warcraft Model Editing
    Replies: 35
    Last Post: 10-06-2007, 06:31 AM
  3. [WIP] Reskin Project V2.
    By Mr. Moose in forum World of Warcraft Model Editing
    Replies: 16
    Last Post: 09-22-2007, 06:43 PM
  4. WIP: Barrens Desert
    By dasgman in forum World of Warcraft Model Editing
    Replies: 8
    Last Post: 08-11-2007, 01:47 AM
  5. [WIP] NE Druid to BE Druid!
    By Zero-Cool in forum WoW ME Questions and Requests
    Replies: 3
    Last Post: 05-11-2007, 12:28 AM
All times are GMT -5. The time now is 06:44 AM. 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