[AH Bot] HappyAuction menu

Shout-Out

User Tag List

Page 6 of 149 FirstFirst ... 234567891056106 ... LastLast
Results 76 to 90 of 2227
  1. #76
    bigpuffs's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ChuiChu View Post
    try something like this

    Code:
    while true do
    	haFilterStat(1,'magic find', 50)
    	haFilterType('amulet')
    	haFilterBuyout(5000, true)
    
    	if haSearch() then
    		haListSelect(1)
    		haBuyout()
    	end
    
    	haFilterStat(1,'gold find', 50)
    	haFilterType('ring')
    	haFilterBuyout(6000, true)
    
    	if haSearch() then
    		haListSelect(1)
    		haBuyout()
    	end
    end

    ok nice! so this will loop automatically? also sorry for asking this but im not sure, does this bot search a 4th filter by looking at items if you set it in the script? if so how? thanks again

    [AH Bot] HappyAuction
  2. #77
    siklon's Avatar Member
    Reputation
    4
    Join Date
    Jun 2012
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's pretty simple, the while true statement makes the code inside it loop infinitely. I'm getting dumber typing this post but oh well. And no it doesn't set a 4th filter, you will need to traverse each item in the list and match it with desired stat.

    How:

    Code:
    while true do
    	local desired = 50
    	haFilterStat(1,'magic find', 50)
    	haFilterType('amulet')
    	haFilterBuyout(5000, true)
    
    	if haSearch() then
    		while haListNext() do
    			if haItemStat('dexterity').value1>desired then
    				haBuyout()
    		end
    	end
    
    	haFilterStat(1,'gold find', 50)
    	haFilterType('ring')
    	haFilterBuyout(6000, true)
    
    	if haSearch() then
    		while haListNext() do
    			if haItemStat('dexterity').value1>desired then
    				haBuyout()
    		end
    	end
    end
    Last edited by siklon; 08-15-2012 at 06:13 PM.

  3. #78
    bigpuffs's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by siklon View Post
    It's pretty simple, the while true statement makes the code inside it loop infinitely. I'm getting dumber typing this post but oh well. And no it doesn't set a 4th filter, you will need to traverse each item in the list and match it with desired stat.

    How:

    Code:
    while true do
    	local desired = 50
    	haFilterStat(1,'magic find', 50)
    	haFilterType('amulet')
    	haFilterBuyout(5000, true)
    
    	if haSearch() then
    		haListSelect(1)
    		if haItemStat('dexterity').value1>desired then
    			haBuyout()
    		end
    	end
    
    	haFilterStat(1,'gold find', 50)
    	haFilterType('ring')
    	haFilterBuyout(6000, true)
    
    	if haSearch() then
    		haListSelect(1)
    		if haItemStat('dexterity').value1>desired then
    			haBuyout()
    		end
    	end
    end
    damn thanks guys for the quick response. so the dex stat in the script is the "4th" stat correct? also ive been posting script in snipebuyout how do i get it to run a script from scratch?

    edit: also getting if haSearch() then error Nil
    Last edited by bigpuffs; 08-15-2012 at 06:25 PM.

  4. #79
    bigpuffs's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ChuiChu View Post
    try something like this

    Code:
    while true do
    	haFilterStat(1,'magic find', 50)
    	haFilterType('amulet')
    	haFilterBuyout(5000, true)
    
    	if haSearch() then
    		haListSelect(1)
    		haBuyout()
    	end
    
    	haFilterStat(1,'gold find', 50)
    	haFilterType('ring')
    	haFilterBuyout(6000, true)
    
    	if haSearch() then
    		haListSelect(1)
    		haBuyout()
    	end
    end
    mann im confused with lua.. trying simple copy paste that and it wont work lol. im so fail

    edit: was using old version of bot now its working ^^
    Last edited by bigpuffs; 08-15-2012 at 06:48 PM.

  5. #80
    Fluffyhusky's Avatar Active Member
    Reputation
    36
    Join Date
    Aug 2008
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i have made a LUA to check for undercut legendarys, but i want it to check classes

    i can only get it to check on my selected class, what code should i put in for it to check for monk, barb, wizard, demon hunter, etc

    cause i would like to search for other undercut auctions other then my own selection before i search

    i tryed like useing code like


    haFilterType('Monk') but it wont select it?

    other then that it searches great and i set up random wait timer etc and it buys and everything else

  6. #81
    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)
    haFilterChar('Monk')

  7. #82
    bigpuffs's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ChuiChu View Post
    haFilterChar('Monk')
    local desired = 50
    haListSelect(1)
    if haItemStat('dexterity').value1>desired then
    haBuyout()

    if i add this code will it act as a 4th value and search the items that pop up? for example above = 50dex (4th value)?

    ok i worked this one out myself! this bot is fuking awesome! is there any way it can search through pages though and check 4th stat??
    Last edited by bigpuffs; 08-15-2012 at 09:31 PM.

  8. #83
    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)
    i guess you can look at it that way.... plus values not found in preferred stats, like min/max dmg

  9. #84
    bigpuffs's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    local desired = 110
    haFilterStat(1,'magic find', 10)
    haFilterStat(2,'vitality', 10)
    haFilterStat(3,'strength', 10)
    haFilterType('amulet')
    haFilterBuyout(222500, true)

    if haSearch() then
    haListSelect(1)
    if haItemStat('intelligence').value1>desired then
    haBuyout()
    end
    end

    tested this as i saw one ammy with 100int on first page and bot didnt select

    edit: have worked out that it will select from haListSelect(1) and if haListSelect(1, 2, 3 etc) it will search all on first page. wondering how to make it search second etc too?
    Last edited by bigpuffs; 08-15-2012 at 09:55 PM.

  10. #85
    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)
    youre asking for over 110 int lol. and use haListNext() (see example LogResults.lua) to scan whole list easily.

  11. #86
    bigpuffs's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ChuiChu View Post
    youre asking for over 110 int lol. and use haListNext() (see example LogResults.lua) to scan whole list easily.
    doesnt seem to work with current code im using looks like i need to change it since when i use haListNext() it does nothing only works with haListNext(1) - haListNext(2) etc

  12. #87
    bigpuffs's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    wow your smart ive got it worked now.. godly ty

    just got owned with this rofl if haItemStat('critical hit chance') lost like 10m ^^ it was buying out helms with skill ability crit chance...
    Last edited by bigpuffs; 08-15-2012 at 11:00 PM.

  13. #88
    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)
    oops... sry bout that. i think i need to add an "exact" option to that

    or better yet, match from beginning... not substring
    Last edited by ChuiChu; 08-16-2012 at 12:01 AM.

  14. #89
    Syncmaster95's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Excellent work on this bot

    But i cant get relogin to work, it does relog but it will not enter the correct lvl, rarity and item type, but buyout is correctly set.
    I have tried to put the login function many places, no sucess.

    And when it finds an item it hovers over it a fraction of a second before clicking buyout? is it possible to decrease this time? I've missed alot of items due to this, it seems like the item stats has time to show up before it clicks buyout, even the stats on my char pops up besides it(It still clicks fast but there seem to be a few 100ms delay). This is even on instant speed with 0ms delay and imput limit after 1>m,

  15. #90
    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 Syncmaster95 View Post
    Excellent work on this bot

    But i cant get relogin to work, it does relog but it will not enter the correct lvl, rarity and item type, but buyout is correctly set.
    I have tried to put the login function many places, no sucess.

    And when it finds an item it hovers over it a fraction of a second before clicking buyout? is it possible to decrease this time? I've missed alot of items due to this, it seems like the item stats has time to show up before it clicks buyout, even the stats on my char pops up besides it(It still clicks fast but there seem to be a few 100ms delay). This is even on instant speed with 0ms delay and imput limit after 1>m,
    ya, it doesnt resume state (yet). for now place it right before where you set all your filters so it sets them all again when it gets back into the AH.

    i just improved haBuyout to avoid waiting a few unnecessary frames so youll see a slight improvement there.

    beyond that its as fast as it can be relative to your framerate. ensure background FPS isnt limited in graphics settings.
    Last edited by ChuiChu; 08-16-2012 at 04:18 PM.

Page 6 of 149 FirstFirst ... 234567891056106 ... LastLast

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 12:07 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