[AutoIt] Diablo 3 Click To Move, Interaction, Actor Handling. (Version 2) menu

User Tag List

Page 12 of 21 FirstFirst ... 8910111213141516 ... LastLast
Results 166 to 180 of 302
  1. #166
    Calculator's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi guys!

    I am trying to use this code: [AutoIt] ;;============================================================================== - Pastebin.com (it is the original with replaced offsets) and it always exits with this error message:

    "Line 616 (File:...)
    IndexStringList($Object_File_StringList($index[0])
    IndexStringList($Object_File_StringList(^ERROR

    Error: Array variable subscript badly formatted."

    I did some inspection and LocateMyToon() always returns with false, it isn't found the 0x77BC0000 signature. I've checked it manually on a memory dump with HxD Editor and the programs result is right.

    Any ideas or could you upload a working version to pastebin?

    [AutoIt] Diablo 3 Click To Move, Interaction, Actor Handling. (Version 2)
  2. #167
    Calculator's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Duplicate - deleted

  3. #168
    beastmode22387's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    C:\Program Files\Diablo III\D3Lib.au3(77,103) : WARNING: $Atrib_Item_Quality_Level: possibly used before declaration.
    if IterateActorAtribs($OBject[$i][1],$Atrib_Item_Quality_Level)

    This pops up before I'm able to run anything, anybody know what the deal is?

  4. #169
    sunblood's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by beastmode22387 View Post
    C:\Program Files\Diablo III\D3Lib.au3(77,103) : WARNING: $Atrib_Item_Quality_Level: possibly used before declaration.
    if IterateActorAtribs($OBject[$i][1],$Atrib_Item_Quality_Level)

    This pops up before I'm able to run anything, anybody know what the deal is?
    Those are Warnings from SciTE, not errors. You can safely ignore them. If you'd like to fix the Warnings you need to declare all the variables it Warns you about as Global at the top of the script so it sees that they are definitely declared.

  5. #170
    Calculator's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Calculator View Post
    Hi guys!

    I am trying to use this code: [AutoIt] ;;============================================================================== - Pastebin.com (it is the original with replaced offsets) and it always exits with this error message:

    "Line 616 (File:...)
    IndexStringList($Object_File_StringList($index[0])
    IndexStringList($Object_File_StringList(^ERROR

    Error: Array variable subscript badly formatted."

    I did some inspection and LocateMyToon() always returns with false, it isn't found the 0x77BC0000 signature. I've checked it manually on a memory dump with HxD Editor and the programs result is right.

    Any ideas or could you upload a working version to pastebin?
    It was caused by x64 interpreter. The solution is:

    In _memoryread() function

    Return $v_value

    should be replaced with this:

    If ($sv_type="ptr") and (@OSArch = "X64") Then
    Return BitAnd($v_value,0xFFFFFFFF)
    Else
    Return $v_value
    EndIf

  6. #171
    shoanimal's Avatar Private
    Reputation
    3
    Join Date
    Jul 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok so i have been able to get a list of the items in my pack, but now i can't figure out how to find the item level. Does anyone know how to gather the i-level or the required level for an item?

  7. #172
    GnomBG's Avatar Corporal
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone upload a working script for the new patch?
    Cant find it anywhere... please help me
    Last edited by GnomBG; 07-22-2012 at 01:10 PM.

  8. #173
    Evozer's Avatar Contributor
    Reputation
    150
    Join Date
    Jan 2011
    Posts
    214
    Thanks G/R
    1/15
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by shoanimal View Post
    Ok so i have been able to get a list of the items in my pack, but now i can't figure out how to find the item level. Does anyone know how to gather the i-level or the required level for an item?
    There is an attribute for item level requirement (0x12A), but it's not masked with 0xFFFFF000 instead it is 0x0003B000. I haven't figured out a good way to get the item level besides using the actor name which is a pain.

  9. #174
    beastmode22387's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Line 231: (File "C:\etc\etc\NomadMemory.au3")

    Const $TOKEN_ADJUST_PRIVILEGES=0x0020
    Const ^ ERROR

    Error: Can not redeclare a constant.




    Anybody know what's causing this error? I'm new to AutoIT
    Last edited by beastmode22387; 07-23-2012 at 12:02 AM.

  10. #175
    GnomBG's Avatar Corporal
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    comment the tree constants
    that sould fix the problem but i have further errors in the script
    what about you?

  11. #176
    Thaelion's Avatar Member
    Reputation
    9
    Join Date
    Jan 2008
    Posts
    168
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GnomBG View Post
    comment the tree constants
    that sould fix the problem but i have further errors in the script
    what about you?
    Dont know, works fine for me, after i removed some functions, like the really really slow stringlist stuff.

  12. #177
    beastmode22387's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah, I still get errors after doing that but they were in some of the string stuff so maybe I'll mess around with that some more. Thaelion any chance you could upload your working code?

  13. #178
    Kizzarse's Avatar Corporal
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Look through this thread beastmode, or just rename those variables eg. Const $TOKEN_ADJUST_PRIVILEGES=0x0020 to Const $TOKEN_ADJUST_PRIV=0x0020. But there was an earlier thread about this.

  14. #179
    Kizzarse's Avatar Corporal
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Btw - anyone was able to solve the bug movement freeze when u start script without clicking on screen to register your char's position ingame.

  15. #180
    shoanimal's Avatar Private
    Reputation
    3
    Join Date
    Jul 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Evozer View Post
    There is an attribute for item level requirement (0x12A), but it's not masked with 0xFFFFF000 instead it is 0x0003B000. I haven't figured out a good way to get the item level besides using the actor name which is a pain.
    I may have an answere to this soon. Your tidbit about the mask helped me puzzle it out. I will post code when it is a little refined.

Page 12 of 21 FirstFirst ... 8910111213141516 ... LastLast

Similar Threads

  1. Interact problems with Click to move
    By natt_ in forum WoW Memory Editing
    Replies: 3
    Last Post: 09-28-2014, 02:12 PM
  2. [AutoIt] Diablo 3 Click To Move, Interaction, Actor Indexing.
    By UnknOwned in forum Diablo 3 Memory Editing
    Replies: 84
    Last Post: 06-30-2012, 11:59 AM
  3. [Diablo 3] Click to move?
    By diablothree in forum Diablo 3 Memory Editing
    Replies: 3
    Last Post: 01-14-2012, 04:29 AM
  4. Click to move?
    By ashleyww in forum WoW Memory Editing
    Replies: 32
    Last Post: 07-18-2009, 08:48 PM
  5. Click to Move Problem
    By Rival-Fr in forum WoW Memory Editing
    Replies: 5
    Last Post: 07-03-2009, 09:27 AM
All times are GMT -5. The time now is 04:39 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