[Goldfarming] Dank Cellar Gold and Loot [AutoIT Script] [WIZARD] [800x600] menu

User Tag List

Page 17 of 30 FirstFirst ... 131415161718192021 ... LastLast
Results 241 to 255 of 441
  1. #241
    chancity's Avatar Legendary
    CoreCoins Purchaser
    Reputation
    686
    Join Date
    Jun 2012
    Posts
    1,153
    Thanks G/R
    27/341
    Trade Feedback
    11 (55%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Latest verison of anal loot, 1920x1080 is now supported.

    https://www.dropbox.com/s/5jfqam6kfa...l%20Update.zip

    Originally Posted by stealthingyew View Post
    I added a gui portion for anal loot if you want to use it

    Code:
    Global $txtRareStashilvl, $txtRareSalvageilvl, $txtRareVendorilvl, $txtMagicStashilvl, $txtMagicSalvageilvl, $txtMagicVendorilvl
    in the readini add
    Code:
    $RareStashilvl=IniRead($settingsINI, "Anal Loot", "Stash Rare", $RareStashiLvl)
    $RareSalvageilvl=IniRead($settingsINI, "Anal Loot", "Salvage Rare", $RareSalvageilvl)
    $RareVendoriLvl=IniRead($settingsINI, "Anal Loot", "Vendor Rare", $RareVendoriLvl)
    $MagicStashilvl=IniRead($settingsINI, "Anal Loot", "Stash Magic", $MagicStashilvl)
    $MagicSalvageilvl=IniRead($settingsINI, "Anal Loot", "Salvage Magic", $MagicSalvageilvl)
    $MagicVendorilvl=IniRead($settingsINI, "Anal Loot", "Vendor Magic", $MagicVendorilvl)
    in the func guiupdate() add

    Code:
    ;anal loot
    GUIUpdate($txtRareStashiLvl,$RareStashiLvl)
    GUIUpdate($txtRareSalvageiLvl,$RareSalvageiLvl)
    GUIUpdate($txtRareVendoriLvl,$RareVendoriLvl)
    GUIUpdate($txtMagicStashiLvl,$MagicStashiLvl)
    GUIUpdate($txtMagicSalvageiLvl,$MagicSalvageiLvl)
    GUIUpdate($txtMagicVendoriLvl,$MagicVendoriLvl)
    in the func saveini()
    Code:
    IniWrite($settingsINI, "Anal Loot", "Stash Rare", GUICtrlRead($txtRareStashilvl))
    IniWrite($settingsINI, "Anal Loot", "Salvage Rare", GUICtrlRead($txtRareSalvageilvl))
    IniWrite($settingsINI, "Anal Loot", "Vendor Rare", GUICtrlRead($txtRareVendoriLvl))
    IniWrite($settingsINI, "Anal Loot", "Stash Magic", GUICtrlRead($txtMagicStashilvl))
    IniWrite($settingsINI, "Anal Loot", "Salvage Magic", GUICtrlRead($txtMagicSalvageilvl))
    IniWrite($settingsINI, "Anal Loot", "Vendor Magic", GUICtrlRead($txtMagicVendorilvl))
    right above
    Code:
    GUISetState()
    
    getCustomKeys()
    UpdateGUI()
    EndFunc ;===SettingsGUI
    add
    Code:
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $tsAnalLoot = GUICtrlCreateTabItem("Anal Loot")
    $grpRares = GUICtrlCreateGroup("", 8, 34, 201, 155)
    GUICtrlSetFont(-1, 8, 400, 0, "Arial")
    $lblrarestashilvl = GUICtrlCreateLabel("Stash Rare iLvl:", 24, 50, 83, 15)
    $txtRareStashiLvl = GUICtrlCreateInput($RareStashiLvl, 128, 50, 49, 15)
    GUICtrlSetLimit(-1, 2)
    
    $lblSalvageRareiLvl = GUICtrlCreateLabel("Salvage Rare iLvl:", 24, 74, 94, 15)
    $txtRareSalvageiLvl = GUICtrlCreateInput($RareSalvageiLvl, 128, 74, 49, 15)
    GUICtrlSetLimit(-1, 2)
    
    $lblRareVendoriLvl = GUICtrlCreateLabel("Vendor Rare iLvl:", 24, 99, 91, 15)
    $txtRareVendoriLvl = GUICtrlCreateInput($RareVendoriLvl, 128, 99, 49, 15)
    GUICtrlSetLimit(-1, 2)
    
    $lblMagicStashiLvl = GUICtrlCreateLabel("Stash Magic iLvl:", 24, 123, 88, 15)
    $txtMagicStashiLvl = GUICtrlCreateInput($MagicStashiLvl, 128, 123, 49, 15)
    GUICtrlSetLimit(-1, 2)
    
    $lblMagicSalvageiLvl = GUICtrlCreateLabel("Salvage Magic iLvl:", 24, 147, 99, 15)
    $txtMagicSalvageiLvl = GUICtrlCreateInput($MagicSalvageiLvl, 128, 147, 49, 15)
    GUICtrlSetLimit(-1, 2)
    
    $lblMagicVendoriLvl = GUICtrlCreateLabel("Vendor Magic iLvl:", 24, 171, 96, 15)
    $txtMagicVendoriLvl = GUICtrlCreateInput($MagicVendoriLvl, 128, 171, 49, 15)
    GUICtrlSetLimit(-1, 2)

    Thanks, I'm going to add it to the GUI, the way you did it kinda looks ugly.
    Last edited by chancity; 07-13-2012 at 01:12 AM.

    [Goldfarming] Dank Cellar Gold and Loot [AutoIT Script] [WIZARD] [800x600]
  2. #242
    KevinKoh's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    HI im currently trying to run the script in a 800x600 VM, but it seems like after it enters dank cellar,, the middle mouse 3 does not seem to get sent, ant tips on this?

  3. #243
    cmbhuy's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    has anyone experience any bans with this script?

  4. #244
    botimo's Avatar Master Sergeant
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    114
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sometimes i have issues with lagging in teleport so that i dont reach the cellar. i guess i cant
    do anything to fix this?
    thanks

  5. #245
    stealthingyew's Avatar Knight-Lieutenant
    Reputation
    12
    Join Date
    Jun 2012
    Posts
    257
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chancity View Post
    Latest verison of anal loot, 1920x1080 is now supported.

    https://www.dropbox.com/s/5jfqam6kfa...l%20Update.zip





    Thanks, I'm going to add it to the GUI, the way you did it kinda looks ugly.
    Lol I didn't think it looked to bad and it gets the job done I did it by hand and guessing the coords I originallyI had 2 separate groups 1 for rares 1 for magics that looked good but skewed and couldn't size it to fit on 1 tab

  6. #246
    LATM's Avatar Contributor
    Reputation
    189
    Join Date
    Jun 2012
    Posts
    457
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    latest version of Anal loot still sells your items. do not use it

  7. #247
    stealthingyew's Avatar Knight-Lieutenant
    Reputation
    12
    Join Date
    Jun 2012
    Posts
    257
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by LATM View Post
    latest version of Anal loot still sells your items. do not use it
    If the item looks the same graphic wise it can. I noticed it As well but it was because I had I'd"d rare in my bag already. I am wearing All leg/rares and only seen it actually stop 1ce from a blue being equiped

  8. #248
    x1le's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by LATM View Post
    latest version of Anal loot still sells your items. do not use it

    Had it running for the last 10 hours or so and the one time it changed my gear it stopped and nothing was lost. Working (almost) as intended.

  9. #249
    chancity's Avatar Legendary
    CoreCoins Purchaser
    Reputation
    686
    Join Date
    Jun 2012
    Posts
    1,153
    Thanks G/R
    27/341
    Trade Feedback
    11 (55%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by x1le View Post
    Had it running for the last 10 hours or so and the one time it changed my gear it stopped and nothing was lost. Working (almost) as intended.
    Originally Posted by LATM View Post
    latest version of Anal loot still sells your items. do not use it
    The script should be safe now, I forgot to add the checkinventory before salvaging. Thats probably what happen to us.


    https://www.dropbox.com/s/5jfqam6kfa...l%20Update.zip
    Last edited by chancity; 07-13-2012 at 12:18 PM.

  10. #250
    x1le's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm getting a lot of disconnect errors after clicking "leave game". What timing do I have do adjust? Or could you make the error detection faster. It always takes about 10 seconds until it clicks ok.

    EDIT: I added a sleep() to the LeaveGame() function. Seems to work now.

    Func LeaveGame()
    Send("{SPACE}")
    sleep(200)
    Send("{Escape}")
    Sleep(Random(200, 400))
    RandClick("left", Round(398 * $x_ratio),Round(322 * $y_ratio), 10, 2) ;Random Click on the leave button
    Call("CalcTime")
    Sleep($timingGameLoad)
    EndFunc ;==>LeaveGame
    Last edited by x1le; 07-13-2012 at 02:22 PM.

  11. #251
    chancity's Avatar Legendary
    CoreCoins Purchaser
    Reputation
    686
    Join Date
    Jun 2012
    Posts
    1,153
    Thanks G/R
    27/341
    Trade Feedback
    11 (55%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Change your teleport time.

    Originally Posted by x1le View Post
    I'm getting a lot of disconnect errors after clicking "leave game". What timing do I have do adjust? Or could you make the error detection faster. It always takes about 10 seconds until it clicks ok.

    EDIT: I added a sleep() to the LeaveGame() function. Seems to work now.

  12. #252
    npploveyou's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    27
    Thanks G/R
    0/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sorry to ask the outside question, but anyone has this script editted for WD??? Please share, thanks

  13. #253
    d3votion's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by KevinKoh View Post
    HI im currently trying to run the script in a 800x600 VM, but it seems like after it enters dank cellar,, the middle mouse 3 does not seem to get sent, ant tips on this?
    open the .au3 file and search for: 'dankcellar'...
    the 2nd result it is:

    If CheckFor("DankCellar", "Area") Then
    GUICtrlSetData($lblLocation, "Location: Dank Cellar")
    RandClick("middle", Round(20 * $x_ratio),Round(708 * $y_ratio), 1, 1) ;moves to doorway leading to rare inside cellar
    now add a ''Sleep (150)'' in between the lines like this:

    If CheckFor("DankCellar", "Area") Then
    GUICtrlSetData($lblLocation, "Location: Dank Cellar")
    Sleep (150)
    RandClick("middle", Round(20 * $x_ratio),Round(708 * $y_ratio), 1, 1) ;moves to doorway leading to rare inside cellar
    (i had this in 800*600, this excerpt is off the 1920*file)

  14. #254
    thequietplace's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Script and version: LAWL 800x600, Most Recent.
    Help or request: Help
    Desktop resolution: 800x600
    Diablo 3 window type: Fullscreen
    Operating system (32-bit or 64-bit): 64
    Manual or auto install: Manual (Auto would not work)
    Move bound to mouse3: Yes
    Where are you starting the: Resume Screen
    Game language: English

    Two things really, first being that when trying to run the Auto install I kept getting a message saying I didn't have permission to use the file. Second is when I run the script all it does is put the mouse in the top left corner and doesn't move from there. I was wanting to know what might be causing this issue and how to go about resolving it. Thanks in advance

  15. #255
    wat6678's Avatar Sergeant
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thequietplace View Post
    Script and version: LAWL 800x600, Most Recent.
    Help or request: Help
    Desktop resolution: 800x600
    Diablo 3 window type: Fullscreen
    Operating system (32-bit or 64-bit): 64
    Manual or auto install: Manual (Auto would not work)
    Move bound to mouse3: Yes
    Where are you starting the: Resume Screen
    Game language: English

    Two things really, first being that when trying to run the Auto install I kept getting a message saying I didn't have permission to use the file. Second is when I run the script all it does is put the mouse in the top left corner and doesn't move from there. I was wanting to know what might be causing this issue and how to go about resolving it. Thanks in advance
    Try running the auto install file as admin.

Page 17 of 30 FirstFirst ... 131415161718192021 ... LastLast

Similar Threads

  1. Replies: 4466
    Last Post: 05-07-2013, 07:39 AM
  2. Replies: 148
    Last Post: 08-03-2012, 04:19 PM
  3. Replies: 3
    Last Post: 07-31-2012, 06:54 PM
  4. Replies: 164
    Last Post: 07-01-2012, 02:37 PM
  5. Replies: 52
    Last Post: 07-01-2012, 11:01 AM
All times are GMT -5. The time now is 11:44 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