[Release] Tomatoes' Event Running AFK Bot. menu

User Tag List

Page 8 of 9 FirstFirst ... 456789 LastLast
Results 106 to 120 of 129
  1. #106
    herthus's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Tomatoes99: Is there a way to change your script to work in fullscreen mode (not windowed)? Buttonsend to winactive, is this also possible with pixelsearch?

    [Release] Tomatoes' Event Running AFK Bot.
  2. #107
    Tomatoes99's Avatar Sergeant CoreCoins Purchaser
    Reputation
    16
    Join Date
    Aug 2012
    Posts
    47
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by herthus View Post
    @Tomatoes99: Is there a way to change your script to work in fullscreen mode (not windowed)? Buttonsend to winactive, is this also possible with pixelsearch?
    The only reason for fullscreen windowed is to make sure the color is proper in the pixelsearch. There could be a way to get pixelsearch to work without having the window focused, right now I don't know how to do that myself.

  3. #108
    herthus's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Tomatoes99: Thanks! And your script even works in 1280*1024 res I had my doubt because of the $xrat = $xresolution/1366 ect. however it is working!

  4. #109
    Tomatoes99's Avatar Sergeant CoreCoins Purchaser
    Reputation
    16
    Join Date
    Aug 2012
    Posts
    47
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For people that want to run it in the background: the easiest way to do this with autoit is probably VMware. Just run the script in the virtual machine.

  5. #110
    scorps1's Avatar Member
    Reputation
    2
    Join Date
    Sep 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    tomatoes99, i have a suggestion on the skills. currently you have it set to spam "6" or "self-heal" as part of the array. you could also set it to only spam "6" if the health is below a certain amount by using a pixelsearch on the health circle, such as:

    PixelSearch([x1], [y1], [x2], [y2], [red color], 15) ; check health and if below ~75% heal me
    If @error Then
    Send("6")
    EndIf

  6. #111
    Tomatoes99's Avatar Sergeant CoreCoins Purchaser
    Reputation
    16
    Join Date
    Aug 2012
    Posts
    47
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by scorps1 View Post
    tomatoes99, i have a suggestion on the skills. currently you have it set to spam "6" or "self-heal" as part of the array. you could also set it to only spam "6" if the health is below a certain amount by using a pixelsearch on the health circle, such as:

    PixelSearch([x1], [y1], [x2], [y2], [red color], 15) ; check health and if below ~75% heal me
    If @error Then
    Send("6")
    EndIf
    This song is for you, scorps1: Snap - I ve Got The power - YouTube

    Part of the reason why I released it open source is so people like you can add features like this. Seems like you have a good idea how to implement this--why don't you test/refine it and post a function here for everybody to use?

  7. #112
    scorps1's Avatar Member
    Reputation
    2
    Join Date
    Sep 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    no probs, as i mentioned i am using input from your script in a different way but this is how i would incorporate it into yours:

    Code:
    Func DoEvent() ;Spend 3 seconds attacking.
       $r +=3000
       RandSkill()
       Shoot1(1.5)
       checkhealth() ; this is where i am inserting the new function unless you have a better suggestion
    EndFunc ; >DoEvent
    
    Func checkhealth() ; check health and if below ~75% heal me
       PixelSearch([x1], [y1], [x2], [y2], [red color], 15) 
       If @error Then
          Send("6") 
       EndIf
    EndFunc ; >checkhealth
    note: i have refrained from inserting x/y coordinate conversions and colors etc. as they are easy to get through the info tool yourself.

    oh, and don't forget to change the skills array for "6" to something else.
    Last edited by scorps1; 10-05-2012 at 12:13 AM.

  8. #113
    187's Avatar Member
    Reputation
    3
    Join Date
    Mar 2008
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Note you can also do a similar feature for auto-looting, so that you only "spam" the loot key whenever you see the yellow hue'd Loot region in the bottom-ish right region of your UI. This way, you won't have to deal with constantly initiating conversations with NPCs whenever they're nearby, making it less apparent that you're botting and more convenient when looting.

    I haven't rigorously done the coding, but it should be simple enough: just use PixelSearch with the hue in the Loot region with an "If PixelSearch(...) Then Send ("Loot Key")" type of command.

  9. #114
    scorps1's Avatar Member
    Reputation
    2
    Join Date
    Sep 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by 187 View Post
    Note you can also do a similar feature for auto-looting, so that you only "spam" the loot key whenever you see the yellow hue'd Loot region in the bottom-ish right region of your UI. This way, you won't have to deal with constantly initiating conversations with NPCs whenever they're nearby, making it less apparent that you're botting and more convenient when looting.

    I haven't rigorously done the coding, but it should be simple enough: just use PixelSearch with the hue in the Loot region with an "If PixelSearch(...) Then Send ("Loot Key")" type of command.
    yep, done that too. only problem is when you are moving then the loot region goes semi-transparent, making the pixelsearch not work so well. no problem for botters though.

  10. #115
    Falwethiel's Avatar Private
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I paused the script but now I can't unpause it.

  11. #116
    Nitemaru's Avatar Private
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    1st of all thank you for the script Tomatoes!! i have a problem tho. i can't seem to fix the "don't target mobs outside my range" thing :/ i target the red line under my 1st skill so i get the x,y coords but it doesnt seem to work. by the /2 before the value u mean i need to write down the half of what i get?i use 1680x1050 and i have this setting

    Func CheckRange() ; Check for the red range indicator at the bottom of the first skill box.
    PixelSearch($xresolution/2 - 299, $yresolution - 515, $xresolution/2 - 300, $yresolution - 515, 0x911302, 3)

  12. #117
    Lashley93's Avatar Member
    Reputation
    2
    Join Date
    Dec 2010
    Posts
    61
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    noob at this, cant get it working
    Last edited by Lashley93; 10-08-2012 at 11:37 AM.

  13. #118
    oijkn's Avatar Member
    Reputation
    2
    Join Date
    Apr 2007
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello, i try this script and works perfectly !!!! Someone can make the code for autoloot ? or explain me how to ?

    And how i can set the $playtime in minutes please ? I tried to set the value to 0.10 (for ten minutes but nothings happens)

    Best regards.
    Last edited by oijkn; 10-11-2012 at 05:34 AM.

  14. #119
    Wuffkeks's Avatar Banned
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can anyone please help me make a script that "if we fall,wait for our character to stand up and then jump/press spacebar"?

  15. #120
    Tomatoes99's Avatar Sergeant CoreCoins Purchaser
    Reputation
    16
    Join Date
    Aug 2012
    Posts
    47
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by scorps1 View Post
    no probs, as i mentioned i am using input from your script in a different way but this is how i would incorporate it into yours:
    Excellent work! I will integrate this into the initial post and give you credit.

Page 8 of 9 FirstFirst ... 456789 LastLast

Similar Threads

  1. Replies: 2
    Last Post: 07-19-2011, 05:16 PM
  2. [Release]Ultimate Anti AFK Bot[Extra Functions]
    By marco1234 in forum World of Warcraft Bots and Programs
    Replies: 23
    Last Post: 10-02-2009, 08:04 AM
  3. [Release] BoneZz ANTI-AFK BOT
    By BoneZz in forum World of Warcraft Bots and Programs
    Replies: 31
    Last Post: 08-22-2009, 03:49 PM
  4. [Release] Krilleres Anti-AFK Bot
    By Krillere in forum World of Warcraft Bots and Programs
    Replies: 19
    Last Post: 02-02-2009, 01:22 PM
  5. [Release] The Spammer (Addon), Ingame Spam /Anti AFK bot
    By H3llf!re in forum World of Warcraft Bots and Programs
    Replies: 27
    Last Post: 11-03-2008, 02:11 PM
All times are GMT -5. The time now is 12:30 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search