chest farming for the 60's menu

User Tag List

Page 4 of 7 FirstFirst 1234567 LastLast
Results 46 to 60 of 103
  1. #46
    derpinson's Avatar Private
    Reputation
    1
    Join Date
    May 2011
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can get everything to work on 1680 x 1050 except the image search. Not sure. IS there something specific I am missing? (hovers over all the items except it doesn't delete)

    Originally Posted by Arrakis View Post
    Code:
    #include <GUIConstantsEx.au3>
    #include <WindowsConstants.au3>
    #include <ImageSearch.au3>
    
    Global $Paused
    Global $Exit
    HotKeySet("{NUMPAD0}", "TogglePause")
    HotKeySet("{NUMPAD1}", "end")
    
    Local $result,$x,$y,$i,$fire
    $i = 1
    $fire =1
    
    WinActivate("Neverwinter")
    sleep (1000)
    
    while 1
      MouseClick("left",432,618)
      Sleep(500)
      Send("{BACKSPACE 20}")
      sleep(200)
      Send("username")
      sleep(200)
      Send("{TAB}")
      sleep(200)
      Send("password")
      sleep(200)
      Send("{ENTER}")
      Sleep(3000)
      MouseClick("left",1435,1078)
      Sleep(7000)
      Send("f")
      sleep(4000)
      Send("f")
      Sleep(1500)
      Send("i")
      Sleep(1500)
    
      if $i = 8 then
    	for $r=550 to 700 step 45
    	  for $c=1270 to 1550 step 45
            $found = 0
    		sleep(500)
    		MouseMove($c,$r)
    		sleep(500)
    
            $result = _ImageSearchArea("unidentified.png",1,920,500,1230,610,$x,$y,150)
    		if $result=1 Then
    		  FOUND()
    		  ContinueLoop
    	    endif
    
    	    $result = _ImageSearchArea("rank2.png",1,920,500,1230,610,$x,$y,150)
    
    		if $result=1 Then
    		  FOUND()
    		  ContinueLoop
    	    endif
    
    	   
          Next
        Next
          $i = 1
      Else
    	  $i=$i + 1
      endif
    
       Send("i")
       Sleep(500)
       mouseclick("left",921,452)
       Sleep(500)
       Send("{ESC}")
       Sleep(500)
       MouseClick("left",804,620)
       Sleep(500)
       MouseClick("left",821,643)
       Sleep(500)
       MouseClick("left",869,654)
       Sleep(2000)
    
    wend
    
    func found()
      MouseClickDrag("left",$c,$r,700,500,1)
      sleep(500)
      $result = _ImageSearch("delete.bmp",1,$x,$y,100) ; Discard button
      if $result=1 Then
        mouseclick("left",$x,$y)
      endif
    EndFunc
    
    Func end()
      MsgBox(4096, "Exit", "exit", 1)
    exit
    
    EndFunc
    
    
    Func TogglePause()
        $Paused = NOT $Paused
    
        While $Paused
            sleep(100)
        WEnd
    	WinActivate("Neverwinter")
        sleep (2000)
    EndFunc

    chest farming for the 60's
  2. #47
    BlodyWarior's Avatar Contributor
    Reputation
    100
    Join Date
    Jan 2007
    Posts
    330
    Thanks G/R
    5/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone got the image search working? All the coords i changed are correct also the image i made works. I tested the image with a quick image search script i found on forums but no clue how to edit AutoIT code

    script im using.
    Code:
    #include <GUIConstantsEx.au3>
    #include <WindowsConstants.au3>
    #include <ImageSearch.au3>
    
    Global $Paused
    Global $Exit
    HotKeySet("{NUMPAD0}", "TogglePause")
    HotKeySet("{NUMPAD1}", "end")
    
    Local $result,$x,$y,$i,$fire
    $i = 1
    $fire =1
    
    WinActivate("Neverwinter")
    sleep (1000)
    
    while 1
      MouseClick("left",725,570)
      Sleep(500)
      Send("{BACKSPACE 20}")
      sleep(200)
      Send("accoumt")
      sleep(200)
      Send("{TAB}")
      sleep(200)
      Send("password")
      sleep(200)
      Send("{ENTER}")
      Sleep(3000)
      MouseClick("left",1724,965)
      Sleep(8000)
      Send("f")
      sleep(4000)
      Send("f")
      Sleep(1500)
      Send("i")
      Sleep(3000)
    
      if $i = 8 then
        for $r=550 to 700 step 45
          for $c=1270 to 1550 step 45
            $found = 0
            sleep(500)
            MouseMove($c,$r)
            sleep(500)
    
            $result = _ImageSearchArea("unidentified.png",1,681,237,1165,648,$x,$y,150)
            if $result=1 Then
              FOUND()
              ContinueLoop
            endif
    
            $result = _ImageSearchArea("rank2.png",1,681,237,1165,648,$x,$y,150)
    
            if $result=1 Then
              FOUND()
              ContinueLoop
            endif
    
           
          Next
        Next
          $i = 1
      Else
          $i=$i + 1
      endif
    
       Send("i")
       Sleep(500)
       Send("{ESC}")
       Sleep(500)
       MouseClick("left",967,571)
       Sleep(500)
       MouseClick("left",1051,595)
       Sleep(500)
       MouseClick("left",1033,603)
       Sleep(2000)
    
    wend
    
    func found()
      MouseClickDrag("left",$c,$r,369,336,1)
      sleep(500)
      $result = _ImageSearch("delete.bmp",1,$x,$y,100) ; Discard button
      if $result=1 Then
        mouseclick("left",$x,$y)
      endif
    EndFunc
    
    Func end()
      MsgBox(4096, "Exit", "exit", 1)
    exit
    
    EndFunc
    
    
    Func TogglePause()
        $Paused = NOT $Paused
    
        While $Paused
            sleep(100)
        WEnd
        WinActivate("Neverwinter")
        sleep (2000)
    EndFunc
    works like a charm for 1920x1080 but as i said cant get imagesearch working to delete the green items.

  3. #48
    Arrakis's Avatar Active Member
    Reputation
    52
    Join Date
    Jan 2008
    Posts
    123
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You guys need to download the imagesearch.dll and put it in the same folder as the scripts and images.

    Downloads and details here ... ImageSearch Usage Explanation - Example Scripts - AutoIt Forums


    If it hovers over the icon, it will popup a tooltip of the item ... like "unidentfied item ...."
    My script, if you copied it, only searches a small area of the screen (for performance), which is that tooltip area. So you need to make a jpg of the items you want to delete using text in that tooltip.

    Also make a picture for the discard button.
    Last edited by Arrakis; 05-16-2013 at 04:40 AM.

  4. #49
    BlodyWarior's Avatar Contributor
    Reputation
    100
    Join Date
    Jan 2007
    Posts
    330
    Thanks G/R
    5/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So if i get this right it mouseovers your inventory checking the tooltips. Then i just gotta make a screenie of the "Unidentified" text.

  5. #50
    Arrakis's Avatar Active Member
    Reputation
    52
    Join Date
    Jan 2008
    Posts
    123
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yep ... or only a small part of it as long as it's unique.

  6. #51
    BlodyWarior's Avatar Contributor
    Reputation
    100
    Join Date
    Jan 2007
    Posts
    330
    Thanks G/R
    5/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    call me an idiot but i cant for the love of me seem to figure out the coords, as to wich goes where >.> any chance you can push me in the right direction based on my screenshot? im using 1920x1080 resolution.

    http://imageshack.us/a/img835/2127/derot.png

    already given ya +rep

  7. #52
    Arrakis's Avatar Active Member
    Reputation
    52
    Join Date
    Jan 2008
    Posts
    123
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    #include <GUIConstantsEx.au3>
    #include <WindowsConstants.au3>
    #include <ImageSearch.au3>
    
    Global $Paused
    Global $Exit
    HotKeySet("{NUMPAD0}", "TogglePause")
    HotKeySet("{NUMPAD1}", "end")
    
    Local $result,$x,$y,$i
    $i = 1
    
    
    WinActivate("Neverwinter")
    sleep (1000)
    
    while 1
      MouseClick("left",432,618)
      Sleep(500)
      Send("{BACKSPACE 20}")
      sleep(200)
      Send("USERNAME")
      sleep(200)
      Send("{TAB}")
      sleep(200)
      Send("PASSWORD")
      sleep(200)
      Send("{ENTER}")
      Sleep(3000)
      MouseClick("left",1435,1078) ;; Enter World
      Sleep(7000) ;; load into world
      Send("f") ;;  open chest
      sleep(4000)
      Send("f") ;; take all
      Sleep(1500)
      Send("i") ;; open inventory
      Sleep(1500)
    
      if $i = 8 then ;; every 8th run do an inventory cleanup
    	for $r=550 to 700 step 45 ;; Rows in inventory $r = Y coordinate of 1st row until Y coordinate of last row. Step depends on number of pixels between 2 inventory slots.
    	  for $c=1270 to 1550 step 45 ;; Columns  in inventory $c = X coordinate of 1st column until X coordinate of last column.
                $found = 0
    	    sleep(500)
                MouseMove($c,$r) ;; hover mouse over icon to trigger tooltip
    	    sleep(500)
    
                $result = _ImageSearchArea("unidentified.png",1,920,500,1230,610,$x,$y,150)
    	    if $result=1 Then
    	      FOUND()
    	      ContinueLoop
    	    endif
    
    	    $result = _ImageSearchArea("rank2.png",1,920,500,1230,610,$x,$y,150)
                if $result=1 Then
    	      FOUND()
    	      ContinueLoop
    	    endif
    
             Next
          Next
          $i = 1
       Else
          $i=$i + 1
       endif
       
       Send("i")
       Sleep(500)
       Send("{f 2}") ;; sometimes timing goes weird and it opens inventory before looting chest ... this will make sure chest is still looted before logging off
       Sleep(1000)
       Send("{ESC}") ; logout menu
       Sleep(500)
       MouseClick("left",804,620) ; logout
       Sleep(500)
       MouseClick("left",821,643) ; exit 
       Sleep(500)
       MouseClick("left",869,654) ; sure
       Sleep(2000)
    
    wend
    
    func found()
      MouseClickDrag("left",$c,$r,700,500,1) ; pull item from inventory into nothingness to trigger deletion
      sleep(500)
      $result = _ImageSearch("delete.bmp",1,$x,$y,100)
      if $result=1 Then
        mouseclick("left",$x,$y) 
      endif
    EndFunc
    
    Func end()
      MsgBox(4096, "Exit", "exit", 1)
    exit
    
    EndFunc
    
    
    Func TogglePause()
        $Paused = NOT $Paused
    
        While $Paused
            sleep(100)
        WEnd
    	WinActivate("Neverwinter")
        sleep (2000)
    EndFunc
    Can't make it easier then this

  8. #53
    rayearthen's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Arrakis View Post
    Code:
    #include <GUIConstantsEx.au3>
    #include <WindowsConstants.au3>
    #include <ImageSearch.au3>
    
    Global $Paused
    Global $Exit
    HotKeySet("{NUMPAD0}", "TogglePause")
    HotKeySet("{NUMPAD1}", "end")
    
    Local $result,$x,$y,$i
    $i = 1
    
    
    WinActivate("Neverwinter")
    sleep (1000)
    
    while 1
      MouseClick("left",432,618)
      Sleep(500)
      Send("{BACKSPACE 20}")
      sleep(200)
      Send("USERNAME")
      sleep(200)
      Send("{TAB}")
      sleep(200)
      Send("PASSWORD")
      sleep(200)
      Send("{ENTER}")
      Sleep(3000)
      MouseClick("left",1435,1078) ;; Enter World
      Sleep(7000) ;; load into world
      Send("f") ;;  open chest
      sleep(4000)
      Send("f") ;; take all
      Sleep(1500)
      Send("i") ;; open inventory
      Sleep(1500)
    
      if $i = 8 then ;; every 8th run do an inventory cleanup
    	for $r=550 to 700 step 45 ;; Rows in inventory $r = Y coordinate of 1st row until Y coordinate of last row. Step depends on number of pixels between 2 inventory slots.
    	  for $c=1270 to 1550 step 45 ;; Columns  in inventory $c = X coordinate of 1st column until X coordinate of last column.
                $found = 0
    	    sleep(500)
                MouseMove($c,$r) ;; hover mouse over icon to trigger tooltip
    	    sleep(500)
    
                $result = _ImageSearchArea("unidentified.png",1,920,500,1230,610,$x,$y,150)
    	    if $result=1 Then
    	      FOUND()
    	      ContinueLoop
    	    endif
    
    	    $result = _ImageSearchArea("rank2.png",1,920,500,1230,610,$x,$y,150)
                if $result=1 Then
    	      FOUND()
    	      ContinueLoop
    	    endif
    
             Next
          Next
          $i = 1
       Else
          $i=$i + 1
       endif
       
       Send("i")
       Sleep(500)
       Send("{f 2}") ;; sometimes timing goes weird and it opens inventory before looting chest ... this will make sure chest is still looted before logging off
       Sleep(1000)
       Send("{ESC}") ; logout menu
       Sleep(500)
       MouseClick("left",804,620) ; logout
       Sleep(500)
       MouseClick("left",821,643) ; exit 
       Sleep(500)
       MouseClick("left",869,654) ; sure
       Sleep(2000)
    
    wend
    
    func found()
      MouseClickDrag("left",$c,$r,700,500,1) ; pull item from inventory into nothingness to trigger deletion
      sleep(500)
      $result = _ImageSearch("delete.bmp",1,$x,$y,100)
      if $result=1 Then
        mouseclick("left",$x,$y) 
      endif
    EndFunc
    
    Func end()
      MsgBox(4096, "Exit", "exit", 1)
    exit
    
    EndFunc
    
    
    Func TogglePause()
        $Paused = NOT $Paused
    
        While $Paused
            sleep(100)
        WEnd
    	WinActivate("Neverwinter")
        sleep (2000)
    EndFunc
    Can't make it easier then this
    o jeez thank you lol ive been fiddling with this for hours, im hopeless when code doesnt come with notes to tell me what the mouse is doing when it goes where it goes lol. much appreciated!

    i was so lost trying to figure out why the hell i would = 8 lol. thought that had something to do with why i couldnt figure out which coords were to place the mouse at the inv slots i wanted to check.

  9. #54
    crysis93's Avatar Member
    Reputation
    7
    Join Date
    Jun 2012
    Posts
    44
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Arrakis View Post
    You guys need to download the imagesearch.dll and put it in the same folder as the scripts and images.

    Downloads and details here ... ImageSearch Usage Explanation - Example Scripts - AutoIt Forums


    If it hovers over the icon, it will popup a tooltip of the item ... like "unidentfied item ...."
    My script, if you copied it, only searches a small area of the screen (for performance), which is that tooltip area. So you need to make a jpg of the items you want to delete using text in that tooltip.

    Also make a picture for the discard button.
    I have everything in the folder and changed all the cords and everything works great except the imagesearch for deleting items. I downloaded the two files and put them in the same folder but i get this error:

    "Line 44(File ImageSearch.au3)

    if $result[0]="0" then return 0
    if $result^ ERROR

    Error: Subscript with non-Array variable"

  10. #55
    BlodyWarior's Avatar Contributor
    Reputation
    100
    Join Date
    Jan 2007
    Posts
    330
    Thanks G/R
    5/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Arrakis View Post
    Code:
    #include <GUIConstantsEx.au3>
    #include <WindowsConstants.au3>
    #include <ImageSearch.au3>
    
    Global $Paused
    Global $Exit
    HotKeySet("{NUMPAD0}", "TogglePause")
    HotKeySet("{NUMPAD1}", "end")
    
    Local $result,$x,$y,$i
    $i = 1
    
    
    WinActivate("Neverwinter")
    sleep (1000)
    
    while 1
      MouseClick("left",432,618)
      Sleep(500)
      Send("{BACKSPACE 20}")
      sleep(200)
      Send("USERNAME")
      sleep(200)
      Send("{TAB}")
      sleep(200)
      Send("PASSWORD")
      sleep(200)
      Send("{ENTER}")
      Sleep(3000)
      MouseClick("left",1435,1078) ;; Enter World
      Sleep(7000) ;; load into world
      Send("f") ;;  open chest
      sleep(4000)
      Send("f") ;; take all
      Sleep(1500)
      Send("i") ;; open inventory
      Sleep(1500)
    
      if $i = 8 then ;; every 8th run do an inventory cleanup
        for $r=550 to 700 step 45 ;; Rows in inventory $r = Y coordinate of 1st row until Y coordinate of last row. Step depends on number of pixels between 2 inventory slots.
          for $c=1270 to 1550 step 45 ;; Columns  in inventory $c = X coordinate of 1st column until X coordinate of last column.
                $found = 0
            sleep(500)
                MouseMove($c,$r) ;; hover mouse over icon to trigger tooltip
            sleep(500)
    
                $result = _ImageSearchArea("unidentified.png",1,920,500,1230,610,$x,$y,150)
            if $result=1 Then
              FOUND()
              ContinueLoop
            endif
    
            $result = _ImageSearchArea("rank2.png",1,920,500,1230,610,$x,$y,150)
                if $result=1 Then
              FOUND()
              ContinueLoop
            endif
    
             Next
          Next
          $i = 1
       Else
          $i=$i + 1
       endif
       
       Send("i")
       Sleep(500)
       Send("{f 2}") ;; sometimes timing goes weird and it opens inventory before looting chest ... this will make sure chest is still looted before logging off
       Sleep(1000)
       Send("{ESC}") ; logout menu
       Sleep(500)
       MouseClick("left",804,620) ; logout
       Sleep(500)
       MouseClick("left",821,643) ; exit 
       Sleep(500)
       MouseClick("left",869,654) ; sure
       Sleep(2000)
    
    wend
    
    func found()
      MouseClickDrag("left",$c,$r,700,500,1) ; pull item from inventory into nothingness to trigger deletion
      sleep(500)
      $result = _ImageSearch("delete.bmp",1,$x,$y,100)
      if $result=1 Then
        mouseclick("left",$x,$y) 
      endif
    EndFunc
    
    Func end()
      MsgBox(4096, "Exit", "exit", 1)
    exit
    
    EndFunc
    
    
    Func TogglePause()
        $Paused = NOT $Paused
    
        While $Paused
            sleep(100)
        WEnd
        WinActivate("Neverwinter")
        sleep (2000)
    EndFunc
    Can't make it easier then this
    got it to work now with some minor alterations. I had the correct setup all allong but didn't figure it would take 8 rounds before it would do inventory check.

  11. #56
    Andblood's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any1 can share the quest on mindflayer?

  12. #57
    XCRAVENX's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    6
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello guys,

    This scripts only login and then open my inventory. There is no movement code in your script. Is it only for open chest without movement at start location to chest room?

  13. #58
    Arrakis's Avatar Active Member
    Reputation
    52
    Join Date
    Jan 2008
    Posts
    123
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crysis93 View Post
    I have everything in the folder and changed all the cords and everything works great except the imagesearch for deleting items. I downloaded the two files and put them in the same folder but i get this error:

    "Line 44(File ImageSearch.au3)

    if $result[0]="0" then return 0
    if $result^ ERROR

    Error: Subscript with non-Array variable"
    There is a 32 and 64 bit autoit ... and there is a 32 and 64 bit imagesearch.dll ... make sure you use the right versions.

  14. #59
    online88's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Arrakis View Post
    Code:
    #include <GUIConstantsEx.au3>
    #include <WindowsConstants.au3>
    #include <ImageSearch.au3>
    
    Global $Paused
    Global $Exit
    HotKeySet("{NUMPAD0}", "TogglePause")
    HotKeySet("{NUMPAD1}", "end")
    
    Local $result,$x,$y,$i
    $i = 1
    
    
    WinActivate("Neverwinter")
    sleep (1000)
    
    while 1
      MouseClick("left",432,618)
      Sleep(500)
      Send("{BACKSPACE 20}")
      sleep(200)
      Send("USERNAME")
      sleep(200)
      Send("{TAB}")
      sleep(200)
      Send("PASSWORD")
      sleep(200)
      Send("{ENTER}")
      Sleep(3000)
      MouseClick("left",1435,1078) ;; Enter World
      Sleep(7000) ;; load into world
      Send("f") ;;  open chest
      sleep(4000)
      Send("f") ;; take all
      Sleep(1500)
      Send("i") ;; open inventory
      Sleep(1500)
    
      if $i = 8 then ;; every 8th run do an inventory cleanup
    	for $r=550 to 700 step 45 ;; Rows in inventory $r = Y coordinate of 1st row until Y coordinate of last row. Step depends on number of pixels between 2 inventory slots.
    	  for $c=1270 to 1550 step 45 ;; Columns  in inventory $c = X coordinate of 1st column until X coordinate of last column.
                $found = 0
    	    sleep(500)
                MouseMove($c,$r) ;; hover mouse over icon to trigger tooltip
    	    sleep(500)
    
                $result = _ImageSearchArea("unidentified.png",1,920,500,1230,610,$x,$y,150)
    	    if $result=1 Then
    	      FOUND()
    	      ContinueLoop
    	    endif
    
    	    $result = _ImageSearchArea("rank2.png",1,920,500,1230,610,$x,$y,150)
                if $result=1 Then
    	      FOUND()
    	      ContinueLoop
    	    endif
    
             Next
          Next
          $i = 1
       Else
          $i=$i + 1
       endif
       
       Send("i")
       Sleep(500)
       Send("{f 2}") ;; sometimes timing goes weird and it opens inventory before looting chest ... this will make sure chest is still looted before logging off
       Sleep(1000)
       Send("{ESC}") ; logout menu
       Sleep(500)
       MouseClick("left",804,620) ; logout
       Sleep(500)
       MouseClick("left",821,643) ; exit 
       Sleep(500)
       MouseClick("left",869,654) ; sure
       Sleep(2000)
    
    wend
    
    func found()
      MouseClickDrag("left",$c,$r,700,500,1) ; pull item from inventory into nothingness to trigger deletion
      sleep(500)
      $result = _ImageSearch("delete.bmp",1,$x,$y,100)
      if $result=1 Then
        mouseclick("left",$x,$y) 
      endif
    EndFunc
    
    Func end()
      MsgBox(4096, "Exit", "exit", 1)
    exit
    
    EndFunc
    
    
    Func TogglePause()
        $Paused = NOT $Paused
    
        While $Paused
            sleep(100)
        WEnd
    	WinActivate("Neverwinter")
        sleep (2000)
    EndFunc
    Can't make it easier then this
    Works like a charm)
    One little thing i've mentioned) ingame unbind all keys matched in your login and password, expt F ofc and all caht buttons "Enter,Backspace" etc.
    this lowers chance to stuck to 0% i think

  15. #60
    botelho's Avatar Member
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    88
    Thanks G/R
    8/0
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    _ImageSearchArea("rank2.png",1,920,500,1230,610,$x,$y,150)
    What each parameter do?
    whats the 1 do?
    920,500 and 1230, 610 are the area I wanna search?
    x and y saves the coords, that I kind figure out.
    150?

    EDIT - Nevermind, already found it.
    Last edited by botelho; 05-16-2013 at 05:06 PM.

Page 4 of 7 FirstFirst 1234567 LastLast

Similar Threads

  1. Replies: 6
    Last Post: 08-12-2008, 10:23 AM
  2. Level 70 Farming Spots! Prepare for the Lich King!
    By Decayd in forum World of Warcraft Guides
    Replies: 19
    Last Post: 06-06-2008, 11:13 AM
  3. Non instance chest farming for potions... etc
    By agaszo in forum World of Warcraft Guides
    Replies: 2
    Last Post: 01-03-2008, 02:37 PM
  4. Death of the rogue chest farm.
    By puccio in forum World of Warcraft General
    Replies: 0
    Last Post: 05-22-2007, 09:42 AM
All times are GMT -5. The time now is 09:32 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search