Flag for swimming? Or state? menu

User Tag List

Results 1 to 12 of 12
  1. #1
    LegacyAX's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2009
    Posts
    193
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Flag for swimming? Or state?

    Hey wonderin if anyone knows or what they use to detect if your bot gets into water/swimming since they cant mount with fly mounts and such. Thanks will +rep for da help.

    btw, If its a descriptor just hte name would be fine, Just not sure which flag it is.

    Flag for swimming? Or state?
  2. #2
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There's a very good lua function you could check for this. Guss what it's called?

    IsSwimming()

    0x006A4700;

    test dword ptr [eax+0A30h], 200000h
    jz short loc_6A4749

    eax being the local player so..

    if( [obj + 0x0A30] == 0x
    200000)
    IsSwimming = true;

    else
    IsSwimming = false;

    Last edited by Nesox; 05-14-2009 at 05:23 PM.

  3. #3
    g3gg0's Avatar Active Member
    Reputation
    32
    Join Date
    Mar 2008
    Posts
    86
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    for the copy-pasters

    Code:
        protected const int PositionFieldsOffset = 0xD8;
        protected const int FlyingStateOffset = 0x44;
    
        ...
    
        public int PositionFields
        {
            get { return WoW.ReadInteger(BaseAddress + PositionFieldsOffset); }
        }
        public virtual bool isSwimming
        {
            get { return (WoW.ReadUInteger(PositionFields + FlyingStateOffset) & 0x00200000) != 0; }
        }

  4. #4
    LegacyAX's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2009
    Posts
    193
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks guys, I dont inject to call any lua functions So ill try that descriptor +Rep too the both of you. ^_^

  5. #5
    Shynd's Avatar Contributor
    Reputation
    97
    Join Date
    May 2008
    Posts
    393
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    He meant reverse-engineer the IsSwimming LUA function so that you don't have to ask for hand-outs. As he points out, if you would have opened Wow.exe in OLLYDBG and found IsSwimming (hint: text search for 'IsSwimming'!), you would have been able to pull the offset out for yourself. 'Course, anyone defending WoWMimic probably can only function with hand-outs anyway, so I guess I'm expecting too much.

  6. #6
    LegacyAX's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2009
    Posts
    193
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Actually syhnd I just wanted to save a bit of time. I hope you keep yourself out of that 'area' your about to move into. I do have respect for you.

    And when did I ever defend wow mimic? I said wow mimic was poorly coded, anyone can unpack it and de-obfuscated source with Dis# and still see the mess.... Just lighten up if I ask to build off of someones findings.

    If ya wanted to make a light bulb, you gonna go back to the stone age and invent one yourself? Or build off albert's findings and make a better one?

    Exactly.

    Thanks for your help guys.

  7. #7
    Shynd's Avatar Contributor
    Reputation
    97
    Join Date
    May 2008
    Posts
    393
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Give a man a fish and you feed him for a day; teach a man to fish and you feed him for a lifetime. Your light bulb simile sucked.

  8. #8
    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)
    Here's a better similie:

    Quit asking for handouts or you will be banned.

    Oh wait...

  9. #9
    Jadd's Avatar 🐸 Premium Seller
    Reputation
    1515
    Join Date
    May 2008
    Posts
    2,433
    Thanks G/R
    81/336
    Trade Feedback
    1 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Apoc View Post
    Here's a better similie:

    Quit asking for handouts or you will be banned.

    Oh wait...
    I lol'd...

  10. #10
    ramey's Avatar Member
    Reputation
    45
    Join Date
    Jan 2008
    Posts
    320
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    :| When did people get so ****ing lazy

  11. #11
    LegacyAX's Avatar Active Member
    Reputation
    21
    Join Date
    Apr 2009
    Posts
    193
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yea it sucked because its true. You Build off others findings. Simple as that. If you really have to argue with that then your just bored out of your mind. GO do something else for a while, Take a walk or something jesus.

  12. #12
    lanman92's Avatar Active Member
    Reputation
    50
    Join Date
    Mar 2007
    Posts
    1,033
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it really that hard to search for "swimming" in IDA and see that there's a GIANT array of names. Hmmm, wonder what the function under each name issss.... Wow, I guess this function that returns 2 values must be a GetGUID function, hmmm. Look at this offset from the return of that function, looks nice. Not hard.

Similar Threads

  1. Flagged for PVP in BGs
    By DeadlyMaker in forum WoW EMU Questions & Requests
    Replies: 0
    Last Post: 11-29-2008, 07:40 PM
  2. [HUNTER] Make anyone flag for PvP
    By s0lidsnake in forum World of Warcraft Exploits
    Replies: 21
    Last Post: 09-17-2008, 06:27 AM
  3. Get into Six Flags for free!
    By rageelf in forum Community Chat
    Replies: 7
    Last Post: 08-20-2007, 07:35 AM
  4. Replies: 6
    Last Post: 07-15-2006, 01:31 AM
All times are GMT -5. The time now is 02:37 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