[AH Bot] HappyAuction menu

Shout-Out

User Tag List

Page 14 of 149 FirstFirst ... 10111213141516171864114 ... LastLast
Results 196 to 210 of 2227
  1. #196
    ztnko's Avatar Member
    Reputation
    9
    Join Date
    Jul 2012
    Posts
    237
    Thanks G/R
    5/1
    Trade Feedback
    15 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you!

    [AH Bot] HappyAuction
  2. #197
    ChuiChu's Avatar Contributor
    Reputation
    88
    Join Date
    Aug 2012
    Posts
    336
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    also regarding critical hit chance "critical hit chance increased by" should give you the correct results.

  3. #198
    rawkers's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great script! Works perfectly.

  4. #199
    Mulambo7's Avatar Member
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the fast reply! Been running it and haven't found problems yet.
    Just one question, is there a way to change the levels to look for?
    haFilterLevel(60)

    This makes it search only for 60 gear. Is there a way to make an interval for exemple from 50 to 55

    Thanks in advance
    Last edited by Mulambo7; 08-27-2012 at 08:49 PM.

  5. #200
    SirSmace's Avatar Member
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yup

    haFilterLevel(50,55)

  6. #201
    ztnko's Avatar Member
    Reputation
    9
    Join Date
    Jul 2012
    Posts
    237
    Thanks G/R
    5/1
    Trade Feedback
    15 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can i use haItemStat('Has sockets').value1 > 0 now? Or how can i detect sockets?

    I think if socket is empty i can use haItemStat('empty socket').value1 > 0
    and if it's not empty? or if it's more than 1 socket and i need to know exact number of empty sockets?

    gems=0
    if haItemStat('empty socket').value1 > 0 then gems = 1 end
    local item = haItem()
    for j, socket in pairs(item.sockets) do
    if socket.rank > 0 then gems = gems+1 end
    end

    it's too much code for such a simple check and if item have 3 empty sockets - gems will be == 1
    Last edited by ztnko; 08-28-2012 at 12:42 AM.

  7. #202
    ChuiChu's Avatar Contributor
    Reputation
    88
    Join Date
    Aug 2012
    Posts
    336
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    haItemStat is for searching for a stat... not sockets. you have it right with other half of code

    local gems = 0
    for j, socket in pairs(haItem().sockets) do
    if socket.rank > 0 then gems = gems+1 end
    end

    yes its a few extra lines but its a specific request. what if someone else asked if an item has all gemmed sockets.

    also note that as of d3 1.0.4 that search results dont factor gem stats in. so requiring an item be unsocketed isnt that important (unless you care about the gem removal fees).

  8. #203
    ztnko's Avatar Member
    Reputation
    9
    Join Date
    Jul 2012
    Posts
    237
    Thanks G/R
    5/1
    Trade Feedback
    15 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    deleted

    now i understand! Thank you.
    Last edited by ztnko; 08-28-2012 at 01:57 AM.

  9. #204
    nergoza's Avatar Member
    Reputation
    7
    Join Date
    Aug 2012
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just got my account banned for using this bot, so don't use it guys..(I set a good delay times....)

  10. #205
    plasticspoon's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    4. use haGetInstance() to tell one client from another in script. example: if haGetInstance() == 1 then runbotA else runbotB end

    where do I put this?
    Last edited by plasticspoon; 08-28-2012 at 04:10 AM.

  11. #206
    silverhaze222's Avatar Member
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nergoza View Post
    Just got my account banned for using this bot, so don't use it guys..(I set a good delay times....)
    how long were you running it for? 1 week? 2 weeks?

  12. #207
    nergoza's Avatar Member
    Reputation
    7
    Join Date
    Aug 2012
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by silverhaze222 View Post
    how long were you running it for? 1 week? 2 weeks?
    Half a day.

  13. #208
    ChuiChu's Avatar Contributor
    Reputation
    88
    Join Date
    Aug 2012
    Posts
    336
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by plasticspoon View Post
    4. use haGetInstance() to tell one client from another in script. example: if haGetInstance() == 1 then runbotA else runbotB end

    where do I put this?
    wherever you want to choose between running different bots. its optional, otherwise each instance will run the same script... also i just updated so you can tell which d3 is running by your account. example: if haGetAccount() == '[email protected]' then ....

    Originally Posted by nergoza View Post
    Half a day.
    what script did you use?


    on a similar note
    http://us.battle.net/d3/en/forum/topic/5978117806
    just shows how sophisticated warden is... lol
    Last edited by ChuiChu; 08-28-2012 at 04:48 AM.

  14. #209
    silverhaze222's Avatar Member
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nergoza View Post
    Half a day.
    i highly doubt you were banned in half a day of only using this bot.

    what other bots were you using on the account?

  15. #210
    nergoza's Avatar Member
    Reputation
    7
    Join Date
    Aug 2012
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by silverhaze222 View Post
    i highly doubt you were banned in half a day of only using this bot.

    what other bots were you using on the account?
    nothing else, just this 1

Similar Threads

  1. World of Warcraft WoW!Bot (GetALifeBot) 0.61 for WoW 1.9.4 + FishBot
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 43
    Last Post: 04-18-2006, 04:55 AM
  2. WoWGlider and GALB Botting Locations
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 14
    Last Post: 04-11-2006, 08:01 PM
  3. Bot for gaining XP
    By JesseG18 in forum World of Warcraft General
    Replies: 1
    Last Post: 03-09-2006, 08:52 PM
  4. World of Warcraft Bot (GetALifeBot) 0.57 working with 1.9.4
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 7
    Last Post: 03-07-2006, 09:43 PM
  5. Best Botting/Grinding Locations
    By Matt in forum World of Warcraft Exploits
    Replies: 0
    Last Post: 02-27-2006, 12:39 AM
All times are GMT -5. The time now is 02:21 AM. 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