Can't see nodes menu

User Tag List

Results 1 to 7 of 7
  1. #1
    furang's Avatar Member
    Reputation
    19
    Join Date
    Jul 2009
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Can't see nodes

    I can get all the object around my toon, but it seems there are no nodes or herbs among objects.
    The way i find objects:
    object manager = [[0x125A590]+0x2D8C]
    first object = [OM+0xAC]
    offset to next object = 0x3C
    I get object's names and there are nothing like nodes and herbs there. Does anyone know the reason? I use out-of-process tecnique if it does matter.
    PS. Searced. As i understand none faced this.
    UPD: Forgot 2 say. I tought herbalism. And i can interact with nodes, but i can't see them among objects(((
    All objects in my OM have both coords and names and there are no names of herbs. There are some objects without names, but they have zero xyz.
    Last edited by furang; 09-13-2009 at 04:38 PM. Reason: stupid me

    Can't see nodes
  2. #2
    naa's Avatar Contributor
    Reputation
    100
    Join Date
    Oct 2006
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No one faced this as the nodes are placed among the objects you get (if you do it correctly) so the reason for it not working is you doing something wrong.

  3. #3
    furang's Avatar Member
    Reputation
    19
    Join Date
    Jul 2009
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok. Here's my code. (it's based on kynox's OM)
    Deposit Files
    Inside you can find source and binary. You may need to downloads some dlls to get it works.
    And here's the report from VirusTotal.com.
    VirusTotal - Free Online Virus and Malware Scan - Reanalyse
    Of course you can check it by yourself.
    So can someone tell me why doesn't it show nodes and herbs?

  4. #4
    flo8464's Avatar Active Member
    Reputation
    30
    Join Date
    Apr 2009
    Posts
    434
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just paste the interesting code parts, nobody wants to download code tbh.

  5. #5
    furang's Avatar Member
    Reputation
    19
    Join Date
    Jul 2009
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    int main(int argc, char* argv[])
    {
    setlocale(LC_CTYPE,NULL);
    AddDebugPrivileges();
    DWORD dwProcid;
    DWORD dwObjMgr;
    HWND hWnd=FindWindow(NULL,"World of Warcraft");
    GetWindowThreadProcessId(hWnd,&dwProcid);
    HANDLE hProc = OpenProcess( PROCESS_ALL_ACCESS, false, dwProcid );
    ReadProcessMemory( hProc, (LPVOID)(0x125A590), (LPVOID)&dwObjMgr, 4, NULL );
    ReadProcessMemory( hProc, (LPVOID)(dwObjMgr + 0x2D8C), (LPVOID)&dwObjMgr, 4, NULL );
    if ( dwObjMgr == NULL )
    {
    printf("ObjectManager not found!\r\n");
    return 0;
    }
    DWORD dwFirstObject, dwCurObject, dwBytesRead;
    ReadProcessMemory( hProc, (LPVOID)(dwObjMgr + 0xAC), (LPVOID)&dwFirstObject, 4, NULL );
    dwCurObject = dwFirstObject;
    while ( dwCurObject && (dwCurObject&1) == 0 )
    {
    DWORD nm;
    char name[100]="";
    unsigned __int64 ObjGuid;
    ReadProcessMemory( hProc, (LPVOID)(dwCurObject + 0x30), (LPVOID)&ObjGuid, 8, &dwBytesRead );
    float X, Y, Z;
    ReadProcessMemory( hProc, (LPVOID)(dwCurObject + 0x7D4),(LPVOID)&X, 4, &dwBytesRead );
    ReadProcessMemory( hProc, (LPVOID)(dwCurObject + 0x7D,(LPVOID)&Y, 4, &dwBytesRead );
    ReadProcessMemory( hProc, (LPVOID)(dwCurObject + 0x7DC),(LPVOID)&Z, 4, &dwBytesRead );
    ReadProcessMemory( hProc, (LPVOID)(dwCurObject + 0x96,(LPVOID)&nm, 4, NULL );
    ReadProcessMemory( hProc, (LPVOID)(nm + 0x5C),(LPVOID)&nm, 4, NULL );
    ReadProcessMemory( hProc, (LPVOID)(nm),(LPVOID)&name[0], 100*sizeof(char), NULL );
    printf ("GUID: %016I64X \t%f\t%f\t%f\t%s",ObjGuid,X,Y,Z,Utf8ToAnsi(&name[0]));
    dwFirstObject = dwCurObject;
    ReadProcessMemory( hProc, (LPVOID)(dwFirstObject + 0x3C),(LPVOID)&dwCurObject, 4, NULL );
    if ( dwCurObject == dwFirstObject )
    break;
    }
    return 0;
    }
    here it is.

  6. #6
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Eeew, C.

    Good job on sharing though. Have some rep.

  7. #7
    furang's Avatar Member
    Reputation
    19
    Join Date
    Jul 2009
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    10x a lot. But can someone tell me why it doesn't show nodes and herbs?
    2Cypher: I'm not moron now am i?

Similar Threads

  1. Can blizzard see if I use race swaps?
    By Tompilot in forum WoW ME Questions and Requests
    Replies: 7
    Last Post: 03-17-2008, 10:43 AM
  2. Guests Can't see forums
    By dude891 in forum Suggestions
    Replies: 2
    Last Post: 02-28-2008, 12:21 PM
  3. [Help] I can't see the creature's I've spawned in creature_spawns.
    By Ebon in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 02-02-2008, 03:20 PM
  4. can someone see if my website is public
    By cjwilson in forum WoW EMU Guides & Tutorials
    Replies: 3
    Last Post: 12-31-2007, 04:28 PM
  5. [PROGRAM] After a long wait , we can now see models on Mac !!!
    By Flying Piggy in forum World of Warcraft Model Editing
    Replies: 10
    Last Post: 06-06-2007, 01:36 PM
All times are GMT -5. The time now is 12:42 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