[AH Bot] HappyAuction menu

User Tag List

Page 29 of 149 FirstFirst ... 25262728293031323379129 ... LastLast
Results 421 to 435 of 2227
  1. #421
    makaveli10a's Avatar Banned
    Reputation
    19
    Join Date
    Jun 2012
    Posts
    121
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by znafou View Post
    Hello CHui !
    I'd like to use this lovely bot but because I use french version of Diablo I wonder which version I should install between US or Europeean English one ?
    Thank you for your answer and for the job you've done.
    Regards.
    I can assist with that, i am using the European english one, and it works fine, so id say its a good bet
    Id also go as far as say im 99% sure it works for the US to.

    [AH Bot] HappyAuction
  2. #422
    znafou's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So I began to test this very nice bot and I got a problem :
    it seems that haListSelect(1) doesnot always work : testing it when always many items are found, sometimes it returns the first item at first iteration, sometimes nothing until Nth iterations.
    I dont understand at all.
    Can someone help ?
    Re

    while true do
    haFilterBuyout(1000000, true)
    if haSearch() and haListSelect(1) then
    -- haBuyout()
    local item = haItem()
    haAlert("j'achete" .. item.name)
    break
    end
    end
    Last edited by znafou; 09-25-2012 at 05:02 PM.

  3. #423
    znafou's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I found out :
    it's because the haSetGlobalDelay() : if you set it to a to big value (like 200) haListSelect does not work properly anymore...
    I fixed my problem setting it to 0
    weird.

  4. #424
    vanmancool1's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can pls someone help me to set it up? And is one German here for helping me?Does this Bot support eu german ?

    A few Question but pls help :P

  5. #425
    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 coco365 View Post
    For parsing rarity/type, i notice the description of items between us client and cn client. like description of two items

    (1)Immortal King's Soul Cage (不朽之王的永恆統治)
    Set Chest Armor (套裝胸甲)

    (2)Stone of Jordan (喬丹之石)
    Legendary Ring (傳奇戒指)

    now you can see the differences, _FORMAT_ITEM_RARITYTYPE[] = "{c:%s}%s %s{/c}";
    can not prase chinese strings, since no blank in "傳奇戒指", not as that in "Legendary Ring".
    luckly, blz using strictly two words denote item.rarity in chinese client, like "傳奇","套裝","稀有"....
    so i prase two words for rarity, and the remaining for item.type.

    there is only one exception, for normal("普通") items, blz only use one word bow("弓"), so i can not prase item.raty,
    and use the whole sting for item.type.


    2. avoid unicode just ok, maybe you need to convert every utf8 string to ansi, cause you use lots of strcmp, and "*format == '%'",
    its difficult to modify.

    3. for chinese clinet, translation is bad for search, in search combox Ignores Durability loss ("不壞"),
    but in item.stat Ignores Durability loss was translated into("無視耐久度的損壞"), so find unique item.stat in item table maybe a troublesome work.
    if you want to translate between combo and tooltip stat text just use a hash table in lua for the important stats. otherwise its way too much effort to add these translations to HA directly and for every language. especially when blizzard updates these... the only translations i do are for sockets to determine rank. this is the only purpose for those Locale txt files (for now! maybe other stuff later).

    Originally Posted by sanerrr View Post
    Hello, I understand very little English, so I can not understand the bot.
    how to write a script to search the Russian auction?
    I'm willing to pay for help.
    здравствуйте, я плохо понимаю английский и поэтому не могу разобраться в боте.
    как написать скрипты для поиска в русском аукционе?
    я готов заплатить за помощь.
    its supported... just make sure your editor is in UTF8 (not ansi) mode. this will let you use RU strings. for example:
    haFilterUnique("Лик Андариэль", 2)

    Originally Posted by znafou View Post
    Hello CHui !
    I'd like to use this lovely bot but because I use french version of Diablo I wonder which version I should install between US or Europeean English one ?
    Thank you for your answer and for the job you've done.
    Regards.
    ill add french support next update. for now you can use either eu or us english.

    Originally Posted by znafou View Post
    I found out :
    it's because the haSetGlobalDelay() : if you set it to a to big value (like 200) haListSelect does not work properly anymore...
    I fixed my problem setting it to 0
    weird.
    k ill check it out... i rarely test/use delay over 0 since i test with short term bots

    Originally Posted by vanmancool1 View Post
    Can pls someone help me to set it up? And is one German here for helping me?Does this Bot support eu german ?

    A few Question but pls help :P
    german support is next update. but it should work now except for haItem().sockets which i need to translate.

  6. #426
    vanmancool1's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Okay thank you But got new questions can i use the bot with eu english ? And how i set up that bot? And when comes the new update? And thank you for your fast answer

  7. #427
    znafou's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello !
    I have noticed that haListIterate does not work properly : some items are not parsed. To be sure not to have made mistakes in lua coding, I used the BestMojo script and added haLog(haItem().name .. "\n") in the loop. => all the items are not in the log ! Sometimes it jumps over one or two or more items.
    Can someone be of any help about this ?
    Regards.

    I SOLVED MY PROBLEM :
    I changed the diablo version : from GB to US and changed my locale on my computer to US and nearly everything is OK now... Nearly because when I use haALert to display one item, next item of the iteration is missed, but it does not matter for what I'm doing.
    Last edited by znafou; 09-26-2012 at 11:06 AM.

  8. #428
    Noone81's Avatar Private
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, and thanks for a great script!

    A quick question if anyone can assist. I would like to have the script go through a list of returned items and look for a specific string and if it hits it, do buyout. I'm not sure how to use the haItemStat('text') and return a positive for the buyout to happen.

    I edited the default buyout script to something like this (i get a "expected then near '=' (at haItemStat line) error)

    while true do
    haFilterBuyout(buyout, true)
    haSearch()
    while haListIterate() do
    if
    haItemStat('Imba Stat') = true then
    haBuyout()
    end
    end

    Any help much appreciated, thanks!

  9. #429
    eg0rzar's Avatar Private
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, everybody.
    Dear, lay out please archive for Russian D3.

  10. #430
    mrobb2's Avatar Private
    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)
    Hellow chuichu. I have try you bot, But why there is a delay 1-2 sekon after bot found the item before buy it.

    can it set to fast buy after found a item?
    Last edited by mrobb2; 09-27-2012 at 02:50 AM.

  11. #431
    vanmancool1's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I really tested all out ...

    i dont know how to setup this Bot need support for that ... if somebody can explain it to me

    Best is when it was a german

  12. #432
    alexey777's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can someone PM me some filter to proffit aproxx 10mill per day, all working, all understand but now I thing my filters really sucks also I can pay for good filters&info

    write in eng or rus

  13. #433
    makaveli10a's Avatar Banned
    Reputation
    19
    Join Date
    Jun 2012
    Posts
    121
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by alexey777 View Post
    can someone PM me some filter to proffit aproxx 10mill per day, all working, all understand but now I thing my filters really sucks also I can pay for good filters&info

    write in eng or rus
    Its proberbly not the filter, alot of people have left to play WoW mists of pandaria, Toch light and Guild Wars, so give it time, its a really bad time to bot diablo atm, go look at xfire statistics, not that many people playing.

    But it will change once they grow tired of those games and Blizz releases a few patches for D3

  14. #434
    wootpeng's Avatar Contributor
    Reputation
    154
    Join Date
    Jun 2008
    Posts
    227
    Thanks G/R
    0/0
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by alexey777 View Post
    can someone PM me some filter to proffit aproxx 10mill per day, all working, all understand but now I thing my filters really sucks also I can pay for good filters&info

    write in eng or rus
    If you are only making 10m a day it probably isn't worth it to bot. At the current prices it would take you 15+ days just to break even and their are no guarantees you won't be banned before that.

  15. #435
    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 znafou View Post
    Hello !
    I have noticed that haListIterate does not work properly : some items are not parsed. To be sure not to have made mistakes in lua coding, I used the BestMojo script and added haLog(haItem().name .. "\n") in the loop. => all the items are not in the log ! Sometimes it jumps over one or two or more items.
    Can someone be of any help about this ?
    Regards.

    I SOLVED MY PROBLEM :
    I changed the diablo version : from GB to US and changed my locale on my computer to US and nearly everything is OK now... Nearly because when I use haALert to display one item, next item of the iteration is missed, but it does not matter for what I'm doing.
    should there be a difference in language between GB and US? and you can test if items are being read properly by running LogResults and confirm you see 500 items read at the end of log.

    Originally Posted by mrobb2 View Post
    Hellow chuichu. I have try you bot, But why there is a delay 1-2 sekon after bot found the item before buy it.

    can it set to fast buy after found a item?
    should be way faster than that. check if the bot youre using has delays in it (haSleep).

    Originally Posted by Noone81 View Post
    Hi, and thanks for a great script!

    A quick question if anyone can assist. I would like to have the script go through a list of returned items and look for a specific string and if it hits it, do buyout. I'm not sure how to use the haItemStat('text') and return a positive for the buyout to happen.

    I edited the default buyout script to something like this (i get a "expected then near '=' (at haItemStat line) error)

    while true do
    haFilterBuyout(buyout, true)
    haSearch()
    while haListIterate() do
    if
    haItemStat('Imba Stat') = true then
    haBuyout()
    end
    end

    Any help much appreciated, thanks!
    == not =


    Originally Posted by makaveli10a View Post
    Its proberbly not the filter, alot of people have left to play WoW mists of pandaria, Toch light and Guild Wars, so give it time, its a really bad time to bot diablo atm, go look at xfire statistics, not that many people playing.

    But it will change once they grow tired of those games and Blizz releases a few patches for D3
    gw2 here. and i havent played d3 since i beat inferno (like 2 months ago).... only thing fun about the game was writing this bot
    Last edited by ChuiChu; 09-27-2012 at 04:16 PM.

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 04:03 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