4.0 Migration menu

User Tag List

Page 4 of 8 FirstFirst 12345678 LastLast
Results 46 to 60 of 111
  1. #46
    Seifer's Avatar Site Donator
    Reputation
    129
    Join Date
    Apr 2007
    Posts
    270
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JuJuBoSc View Post
    The .Contains looks tricky if another module contain "Wow"
    It would, although I am/was pretty confident that there wasn't any. Either way, this dump of Wow's modules which I checked a few minutes ago shows that there is no other module with Wow in it. So although potentially dodgy, both methods would work.

    4.0 Migration
  2. #47
    Mr.Sergey's Avatar Contributor
    Reputation
    113
    Join Date
    Apr 2009
    Posts
    195
    Thanks G/R
    5/21
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I need help.

    my code:

    wowadr = BaseAddress("wow.exe");
    mouseState = ReadInt(wowadr + mouseOffset);

    I run WoW, run my code - all work good => close WoW => run WoW => run my code - all work good => close WoW => run WoW => my code dont work..((

  3. #48
    thebluefish's Avatar Sergeant
    Reputation
    15
    Join Date
    Aug 2010
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mr.Sergey View Post
    I need help.

    my code:

    wowadr = BaseAddress("wow.exe");
    mouseState = ReadInt(wowadr + mouseOffset);

    I run WoW, run my code - all work good => close WoW => run WoW => run my code - all work good => close WoW => run WoW => my code dont work..((
    If you restart the process, you will of course have to hook into the new process. There's no way around that, so you will have to run your code again every time you restart WoW.

  4. #49
    Mr.Sergey's Avatar Contributor
    Reputation
    113
    Join Date
    Apr 2009
    Posts
    195
    Thanks G/R
    5/21
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thebluefish View Post
    If you restart the process, you will of course have to hook into the new process. There's no way around that, so you will have to run your code again every time you restart WoW.
    I run my code again every time after restart WoW... 2-3 times all work good, but then I had to change the mouseOffset value for the code to run

  5. #50
    oldmanofmen's Avatar Member
    Reputation
    12
    Join Date
    Jan 2010
    Posts
    104
    Thanks G/R
    4/3
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    LastHardwareAction = 0x008B7BF8
    LocalGUID = 0x008BD838

    Still looking for the static playerbase...anyone got it?
    Last edited by oldmanofmen; 10-14-2010 at 05:14 PM.

  6. #51
    moritzmdm's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    // Edited ma post
    Last edited by moritzmdm; 11-30-2011 at 12:38 PM.

  7. #52
    boredevil's Avatar Active Member Authenticator enabled
    Reputation
    46
    Join Date
    Feb 2008
    Posts
    166
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wrong. Goto end of first page, i already posted the right address

    Code:
    pInputControl = 0x8266B8
    GetInputControl = 0x00050820
    
    CurCastingSpellid 0xB24 + UnitBase
    StartTime 0xB30 + UnitBase
    EndTime 0xB34 + UnitBase
    
    CurChannelingSpellId 0xB38 + UnitBase
    StartTime 0xB3C + UnitBase
    EndTime 0xB40 + UnitBase
    Now i need to find Traceline... Edit: Stupid me! thx caytchen for finding the highly suspicious call
    Last edited by boredevil; 10-14-2010 at 01:44 PM.

  8. #53
    caytchen's Avatar Contributor
    Reputation
    138
    Join Date
    Apr 2007
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by boredevil View Post
    Now i need to find Traceline...
    Wrong. Goto end of first page, i already posted the right address.

  9. #54
    natt_'s Avatar Contributor
    Reputation
    145
    Join Date
    Dec 2007
    Posts
    391
    Thanks G/R
    13/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    pObjectStorage = read(objectGUID,0x8,dword)
    hp = (pObjectStorage+0x12*4)
    Last edited by natt_; 10-19-2010 at 05:41 AM.

  10. #55
    _Mike's Avatar Contributor
    Reputation
    310
    Join Date
    Apr 2008
    Posts
    531
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Seifer View Post
    It would, although I am/was pretty confident that there wasn't any. Either way, this dump of Wow's modules which I checked a few minutes ago shows that there is no other module with Wow in it. So although potentially dodgy, both methods would work.
    Until you try that code on a 64bit os, where it might give you any of the wow64 dlls instead.
    So just use Process.MainModule unless you are doing something really weird like hosting wow inside another process.

  11. #56
    boredevil's Avatar Active Member Authenticator enabled
    Reputation
    46
    Join Date
    Feb 2008
    Posts
    166
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You need to read where the Descriptor points to.
    And then read from that address + field *4 to get the value.

    dwDescripor = read(objBase + 0x
    value = read(dwDescriptor + dwField * 4)

  12. #57
    natt_'s Avatar Contributor
    Reputation
    145
    Join Date
    Dec 2007
    Posts
    391
    Thanks G/R
    13/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ooh i know i ment read(objBase + 0x

  13. #58
    DrGonzo's Avatar Contributor
    Reputation
    144
    Join Date
    Jun 2009
    Posts
    132
    Thanks G/R
    0/59
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Edit: Fixed
    For those of you wanting to keep your IDA DB's up to date, here's the patchdiff output to be imported with a .idc script.
    http://pastebin.com/QNBfRHz0
    Enjoy.
    Last edited by DrGonzo; 10-15-2010 at 01:12 AM.

  14. #59
    oldmanofmen's Avatar Member
    Reputation
    12
    Join Date
    Jan 2010
    Posts
    104
    Thanks G/R
    4/3
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by FearAndLawyering View Post
    Here's an updated list of functions/addresses for those wanting to update their ida DB.
    http://pastebin.com/dUKXZE8Y
    Save you the guys the time/effort... day and a half to generate on my dual core lappy.
    Just checked those out, they're not relevant to 4.0.1.13164. Those look to be the addresses for the previous patch.

  15. #60
    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)
    Code:
    SpeedHack = 0x183682
    FlyHack1 = 0x2099B8
    FlyHack2 = 0x54B676
    was anybody successful with the collision patches?
    i think M2Collision1 = 0x2E0928, but M2Collision2 and WMOCollision... no idea yet

Page 4 of 8 FirstFirst 12345678 LastLast

Similar Threads

  1. Free migration when Lich hits. True or false?
    By macho271 in forum World of Warcraft General
    Replies: 5
    Last Post: 08-23-2008, 02:20 AM
  2. Migrate to Russian realms SUCKS
    By Rockerfooi in forum World of Warcraft General
    Replies: 3
    Last Post: 08-06-2008, 07:46 PM
  3. Replies: 4
    Last Post: 06-11-2008, 05:05 PM
  4. Easy migrate a character!
    By INS4N3K1LL in forum WoW EMU Guides & Tutorials
    Replies: 6
    Last Post: 06-11-2008, 01:41 AM
  5. Free Character Migration
    By Unholyshaman in forum World of Warcraft General
    Replies: 0
    Last Post: 12-08-2007, 10:31 AM
All times are GMT -5. The time now is 06:11 PM. 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