[AutoIt] All gear screenshot menu

User Tag List

Page 2 of 6 FirstFirst 123456 LastLast
Results 16 to 30 of 79
  1. #16
    DBXO's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im getting an 'incorrect number of parameters for function call' autoit error in the 64 bit version of your v2!

    [AutoIt] All gear screenshot
  2. #17
    Kroning's Avatar Sergeant
    Reputation
    11
    Join Date
    Jun 2012
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DBXO View Post
    Im getting an 'incorrect number of parameters for function call' autoit error in the 64 bit version of your v2!
    Did it say in what line was it?

  3. #18
    Kroning's Avatar Sergeant
    Reputation
    11
    Join Date
    Jun 2012
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by idsmoker View Post
    Any chance you could do a version that supports the 1900x1200 resolution?
    Yes. But I don't have computer with such res, so I may need someone's help with screenshots and tests.
    PM me if you like.

  4. #19
    Kroning's Avatar Sergeant
    Reputation
    11
    Join Date
    Jun 2012
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DBXO View Post
    Im getting an 'incorrect number of parameters for function call' autoit error in the 64 bit version of your v2!
    I think I know where it is. But it means that this script does not work for you again!
    You ruined all again! =)

  5. #20
    DBXO's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kroning View Post
    I think I know where it is. But it means that this script does not work for you again!
    You ruined all again! =)
    nooooo Sorry.

    also, the 64 bit version said line 3200 (assuming after being compiled) and the 32bit version said line -1!

  6. #21
    owned727's Avatar Member
    Reputation
    1
    Join Date
    Sep 2009
    Posts
    109
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any chance this can be changed so that the script has you manually mouse over the item you want to screenshot and press a button. That way you can do this for multiple items you care to screenshot and montage. I don't have much use for screenshots of the gear I am wearing. I need to be able to montage gear I am looking to sell. If I could select 8-10 items, that would be great!

  7. #22
    DBXO's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by owned727 View Post
    Any chance this can be changed so that the script has you manually mouse over the item you want to screenshot and press a button. That way you can do this for multiple items you care to screenshot and montage. I don't have much use for screenshots of the gear I am wearing. I need to be able to montage gear I am looking to sell. If I could select 8-10 items, that would be great!
    I was actually thinking about modifying it to work like this. Ill let you know what I figure out

    EDIT: Ive got most of it working, just having issues with that damn _ImageSearchArea function
    Last edited by DBXO; 07-15-2012 at 10:48 PM.

  8. #23
    owned727's Avatar Member
    Reputation
    1
    Join Date
    Sep 2009
    Posts
    109
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If u need someone to test let me know

  9. #24
    Kroning's Avatar Sergeant
    Reputation
    11
    Join Date
    Jun 2012
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DBXO View Post
    nooooo Sorry.

    also, the 64 bit version said line 3200 (assuming after being compiled) and the 32bit version said line -1!
    Does it crush on a first item? Can you provide me with a screenshot of it?
    Code:
    #include <ScreenCapture.au3>
    #include <WinAPI.au3>
    #include <GDIPlus.au3>
    
    HotKeySet("=","Start") 
    $start = 0
    While Not($start)
    WEnd
    _GDIPlus_Startup()
    Global $coords[15][2] = [[1172,300],[1172,300],[1265, 278],[1331,316],[1170,393],[1262,374],[1361, 411],[1166, 475],[1265, 440],[1361, 480],[1159, 557],[1257, 500],[1266, 571],[1357, 562]]
    Global $gX=0, $gy=0, $ss[14], $hs[14], $buff[14]
    For $i = 1 To 13
    	MouseMove($coords[$i][0], $coords[$i][1], 0)
    	Sleep(300)
    	$ss[$i] = _ScreenCapture_Capture($i&".bmp", 0, 0, @DesktopWidth, @DesktopHeight, false)
    Next
    
    Func Start()
    	$start = 1
    EndFunc
    This will generate a bunch of screens. Can you send me it? Or just one that chrushes script. I need bmp, not jpg diablo generated.

  10. #25
    Kroning's Avatar Sergeant
    Reputation
    11
    Join Date
    Jun 2012
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by owned727 View Post
    Any chance this can be changed so that the script has you manually mouse over the item you want to screenshot and press a button. That way you can do this for multiple items you care to screenshot and montage. I don't have much use for screenshots of the gear I am wearing. I need to be able to montage gear I am looking to sell. If I could select 8-10 items, that would be great!
    Yes. But first of all we need to make it work stable. =)

  11. #26
    Kroning's Avatar Sergeant
    Reputation
    11
    Join Date
    Jun 2012
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bruce323 View Post
    It looks good..


    I can't see your images, but does it means that scripts works for you? What version?

  12. #27
    DBXO's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ill get you some screenshots.

    What are your methods of fixing a _ImageSearchArea that doesnt catch (returns 0,0)
    I keep adjusting the tolerance, but i either get nothing or random shit sometimes.

  13. #28
    Kroning's Avatar Sergeant
    Reputation
    11
    Join Date
    Jun 2012
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DBXO View Post
    Ill get you some screenshots.

    What are your methods of fixing a _ImageSearchArea that doesnt catch (returns 0,0)
    I keep adjusting the tolerance, but i either get nothing or random shit sometimes.
    1. First of all you need to find does it really work. Because on my clean system script works with no errors but with no profit. But I think you know that it works.
    2. I will look to make search in proper area, because item tooltip always just a few pixel near your arrow.
    3. I think to adjust pics. Making png screenshots. They are more accurate.
    4. Adjusting of treshold might help as well (but it always too tricky).

    I hope this evening/night I will install VMWare with x64 Win7 to make tests. My notebook can't handle this resolution.

  14. #29
    DBXO's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kroning View Post
    1. First of all you need to find does it really work. Because on my clean system script works with no errors but with no profit. But I think you know that it works.
    2. I will look to make search in proper area, because item tooltip always just a few pixel near your arrow.
    3. I think to adjust pics. Making png screenshots. They are more accurate.
    4. Adjusting of treshold might help as well (but it always too tricky).

    I hope this evening/night I will install VMWare with x64 Win7 to make tests. My notebook can't handle this resolution.
    I already made pngs, but i found that when veiwing the entire screen, can still be inaccurate (itll pick a random spot on the ground, or somewhere else in my hud)
    I even limited it to the area around my mouse (480 px left and right) and it still cant accurately pick out the top left, even still picking 0,0 sometimes...

    is there a better way for me to collaborate on this with you?

  15. #30
    junclj's Avatar Master Sergeant
    Reputation
    8
    Join Date
    May 2012
    Posts
    134
    Thanks G/R
    2/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kroning View Post
    Does it crush on a first item? Can you provide me with a screenshot of it?
    Code:
    #include <ScreenCapture.au3>
    #include <WinAPI.au3>
    #include <GDIPlus.au3>
    
    HotKeySet("=","Start") 
    $start = 0
    While Not($start)
    WEnd
    _GDIPlus_Startup()
    Global $coords[15][2] = [[1172,300],[1172,300],[1265, 278],[1331,316],[1170,393],[1262,374],[1361, 411],[1166, 475],[1265, 440],[1361, 480],[1159, 557],[1257, 500],[1266, 571],[1357, 562]]
    Global $gX=0, $gy=0, $ss[14], $hs[14], $buff[14]
    For $i = 1 To 13
    	MouseMove($coords[$i][0], $coords[$i][1], 0)
    	Sleep(300)
    	$ss[$i] = _ScreenCapture_Capture($i&".bmp", 0, 0, @DesktopWidth, @DesktopHeight, false)
    Next
    
    Func Start()
    	$start = 1
    EndFunc
    This will generate a bunch of screens. Can you send me it? Or just one that chrushes script. I need bmp, not jpg diablo generated.
    Same problem here,
    32bit


    64bit

Page 2 of 6 FirstFirst 123456 LastLast

Similar Threads

  1. Replies: 10
    Last Post: 06-21-2023, 02:14 AM
  2. [Selling] 85 Druid/Paladin/Rogue/Hunter (All Geared!)
    By PoSDrums in forum WoW-US Account Buy Sell Trade
    Replies: 3
    Last Post: 11-14-2011, 11:32 PM
  3. [Selling] Mega Account! 7 85s, all geared for heroics+ all different class!
    By Garneth in forum WoW-US Account Buy Sell Trade
    Replies: 2
    Last Post: 10-30-2011, 08:41 AM
  4. [Selling] 10 Lvl 85's one of every class except hunter. 2 priests no hunters. All geared for FL
    By idunnowho1 in forum WoW-US Account Buy Sell Trade
    Replies: 0
    Last Post: 10-15-2011, 06:19 PM
  5. [Problem] character logs off and loses all gear
    By ledz14 in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 06-21-2008, 09:23 AM
All times are GMT -5. The time now is 10:57 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