[Question] Is node underwater/underground menu

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 33
  1. #1
    -Ryuk-'s Avatar Elite User CoreCoins Purchaser Authenticator enabled
    Reputation
    529
    Join Date
    Nov 2009
    Posts
    1,028
    Thanks G/R
    38/51
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Question] Is node underwater/underground

    Hello MMOwned!

    Loving the new site ^^

    Ok, to my question.

    How can I check if a mining/herbing node is underground/underwater?

    Im not asking to code, juts asking how I could!
    |Leacher:11/2009|Donor:02/2010|Established Member:09/2010|Contributor:09/2010|Elite:08/2013|

    [Question] Is node underwater/underground
  2. #2
    namreeb's Avatar Legendary

    Reputation
    668
    Join Date
    Sep 2008
    Posts
    1,029
    Thanks G/R
    8/222
    Trade Feedback
    0 (0%)
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    I'm not aware of an easy way to do this. You'd probably have to parse the ADT in question to see if there is water above it (but no terrain between it and the water).

  3. #3
    -Ryuk-'s Avatar Elite User CoreCoins Purchaser Authenticator enabled
    Reputation
    529
    Join Date
    Nov 2009
    Posts
    1,028
    Thanks G/R
    38/51
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There has to be a better way than that =/
    |Leacher:11/2009|Donor:02/2010|Established Member:09/2010|Contributor:09/2010|Elite:08/2013|

  4. #4
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You can call TraceLine with the correct flags to 'hit' on water.

  5. #5
    Millionarie's Avatar Member
    Reputation
    8
    Join Date
    Jun 2009
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There was a CC for glider named FarmPlix - flying bot based on glider api. If you look at its code you'll find interesting function:
    Code:
            public bool IsNodeUnderground(GNode node)
            {
                int _offset = Context.Memory.ReadInt(node.BaseAddress + 0xD0, "IsNodeUnderground - Offset 1");
                int _value = Context.Memory.ReadByte(_offset + 0x84, "IsNodeUnderground - Offset 2");
                return (_value & 0x3) == 3;
            }
    So [[NodeBaseAddr + 0xD0] + 0x84] - node flags.
    These offsets are outdated.

  6. #6
    MaiN's Avatar Elite User
    Reputation
    335
    Join Date
    Sep 2006
    Posts
    1,047
    Thanks G/R
    0/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Isn't 0xD0 the descriptors (for now, atleast)?
    [16:15:41] Cypher: caus the CPU is a dick
    [16:16:07] kynox: CPU is mad
    [16:16:15] Cypher: CPU is all like
    [16:16:16] Cypher: whatever, i do what i want

  7. #7
    -Ryuk-'s Avatar Elite User CoreCoins Purchaser Authenticator enabled
    Reputation
    529
    Join Date
    Nov 2009
    Posts
    1,028
    Thanks G/R
    38/51
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I had it down as 0x8.

    Thanks Millionarie.

    Now to find the 0x84
    |Leacher:11/2009|Donor:02/2010|Established Member:09/2010|Contributor:09/2010|Elite:08/2013|

  8. #8
    MaiN's Avatar Elite User
    Reputation
    335
    Join Date
    Sep 2006
    Posts
    1,047
    Thanks G/R
    0/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by -Ryuk- View Post
    I had it down as 0x8.

    Thanks Millionarie.

    Now to find the 0x84
    Yes, for objects. For game objects they are at 0xD0 I think.
    [16:15:41] Cypher: caus the CPU is a dick
    [16:16:07] kynox: CPU is mad
    [16:16:15] Cypher: CPU is all like
    [16:16:16] Cypher: whatever, i do what i want

  9. #9
    -Ryuk-'s Avatar Elite User CoreCoins Purchaser Authenticator enabled
    Reputation
    529
    Join Date
    Nov 2009
    Posts
    1,028
    Thanks G/R
    38/51
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MaiN View Post
    Yes, for objects. For game objects they are at 0xD0 I think.
    Yes you are correct. How would I find the 0x84? Trial and error? or?
    |Leacher:11/2009|Donor:02/2010|Established Member:09/2010|Contributor:09/2010|Elite:08/2013|

  10. #10
    Millionarie's Avatar Member
    Reputation
    8
    Join Date
    Jun 2009
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think the best way is to track code ref to [[Base+0xD0]+0x84]] in debugger for wow 3.0.9, then to find this code in the current wow.
    However I was unable to find private wow 3.0.9 server on the web.

  11. #11
    MaiN's Avatar Elite User
    Reputation
    335
    Join Date
    Sep 2006
    Posts
    1,047
    Thanks G/R
    0/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by -Ryuk- View Post
    Yes you are correct. How would I find the 0x84? Trial and error? or?
    I'm pretty sure that is not what it was back then. It has very likely moved.
    [16:15:41] Cypher: caus the CPU is a dick
    [16:16:07] kynox: CPU is mad
    [16:16:15] Cypher: CPU is all like
    [16:16:16] Cypher: whatever, i do what i want

  12. #12
    -Ryuk-'s Avatar Elite User CoreCoins Purchaser Authenticator enabled
    Reputation
    529
    Join Date
    Nov 2009
    Posts
    1,028
    Thanks G/R
    38/51
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Its not what it used to be, Ive tried

    So I need wow 3.0.9?
    |Leacher:11/2009|Donor:02/2010|Established Member:09/2010|Contributor:09/2010|Elite:08/2013|

  13. #13
    Millionarie's Avatar Member
    Reputation
    8
    Join Date
    Jun 2009
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by -Ryuk- View Post
    Its not what it used to be, Ive tried

    So I need wow 3.0.9?
    Glider died at wow 3.0.9. So I think these offsets are for wow 3.0.9

  14. #14
    -Ryuk-'s Avatar Elite User CoreCoins Purchaser Authenticator enabled
    Reputation
    529
    Join Date
    Nov 2009
    Posts
    1,028
    Thanks G/R
    38/51
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Millionarie View Post
    Glider died at wow 3.0.9. So I think these offsets are for wow 3.0.9
    Okay Its gonna be a pain =/
    |Leacher:11/2009|Donor:02/2010|Established Member:09/2010|Contributor:09/2010|Elite:08/2013|

  15. #15
    mnbvc's Avatar Banned
    Reputation
    120
    Join Date
    Jul 2009
    Posts
    273
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i think that's the easier way:
    find an object which is underwater and get it's descriptor address. view this memory region in cheatengine. we should be looking for "int". now look at the descriptor fields of an object which is not underwater in cheatengine
    compare these two... we are looking for a value which does return 3 if we use a "bitwise and" with a 3 on it at the undewater object (that means we are looking for a value like 3/7/11/15 and so on...) and a value which does not return this on the not underwater object

Page 1 of 3 123 LastLast

Similar Threads

  1. Insane Exploit Video - Underwater, Underground, Flying, Out of Map, and more...
    By ElementalPlatypusESO in forum Elder Scrolls Online Exploits
    Replies: 1
    Last Post: 09-12-2016, 07:07 PM
  2. [Question] Check if a nodes underground
    By morxxxel in forum WoW Memory Editing
    Replies: 5
    Last Post: 08-18-2009, 05:50 PM
  3. Question - Help with mining nodes
    By boofstien in forum WoW EMU Questions & Requests
    Replies: 0
    Last Post: 04-16-2009, 06:59 AM
  4. [Question & Request] Mine Nodes & Herbs Model changed to AV flag
    By heosphoros in forum WoW ME Questions and Requests
    Replies: 3
    Last Post: 07-02-2008, 04:53 AM
All times are GMT -5. The time now is 12:32 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