[Announce] Model Edits 4.0.3a menu

User Tag List

Page 2 of 14 FirstFirst 123456 ... LastLast
Results 16 to 30 of 204
  1. #16
    T4PO's Avatar Member
    Reputation
    10
    Join Date
    May 2009
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cromon,
    can you upload a already compiled version of the Wow injector? Its much easier than just explaning the whole thing out on how to compile it.

    [Announce] Model Edits 4.0.3a
  2. #17
    tikigenius's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Alas, ImageBaseAddress is not a member of _PEB in Windows 7. While I have no idea if I'm on the same page as what you're trying to do, I got around the error by replacing

    Code:
    PROCESS_BASIC_INFORMATION pbi;
    NtQueryInformationProcess(hProcess, ProcessBasicInformation, &pbi, sizeof(pbi), NULL);
    PEB peb;
    ReadProcessMemory(hProcess, (LPCVOID)pbi.PebBaseAddress, &peb, sizeof(peb), NULL);
    DWORD dwBase = (DWORD)peb.ImageBaseAddress;
    with

    Code:
    	
    LPMODULEINFO iNtDll;
    DWORD dwBase;
    
    if (GetModuleInformation(hThread, hNtDll, iNtDll, sizeof(iNtDll))) {
    	dwBase = (DWORD)iNtDll->lpBaseOfDll;
    }
    If I'm reading your code right (my C++, especially Win API code, is a bit rusty), this section of code is simply looking for the base address of ntdll.dll. I don't have WoW on this machine to test, but the reading I've done says that this should accomplish the same thing. If you have any input, I'd surely appreciate it.

  3. #18
    Cromon's Avatar Legendary


    Reputation
    840
    Join Date
    Mar 2008
    Posts
    714
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It queries the base address of the WoW-image, not from ntdll.dll. Ive modified my wintrnl.h and changed the PEB structure. Change ImageBaseAddress to Reserved3[1]. Will edit the sourcecode.

  4. #19
    T4PO's Avatar Member
    Reputation
    10
    Join Date
    May 2009
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    May u upload a compiled version for me?



    Please get back to me,
    T4PO

  5. #20
    Pray's Avatar Member
    Reputation
    1
    Join Date
    Aug 2009
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Upload a compiled version PLXPLXPLX

  6. #21
    BLUBBER511's Avatar Active Member
    Reputation
    58
    Join Date
    May 2007
    Posts
    105
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cant get it to work with visual studio, dunno what to do

  7. #22
    T4PO's Avatar Member
    Reputation
    10
    Join Date
    May 2009
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    same. Im not sure what project to start on. Ive tried dll project and alot others, and tried compiling, but all i get are 0 succeded 1 fail. . Im Using Microsoft Visual Stuido 2010.

  8. #23
    Cromon's Avatar Legendary


    Reputation
    840
    Join Date
    Mar 2008
    Posts
    714
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BLUBBER511 View Post
    cant get it to work with visual studio, dunno what to do
    What is it tellin? Compiled one will follow later.

  9. #24
    BLUBBER511's Avatar Active Member
    Reputation
    58
    Join Date
    May 2007
    Posts
    105
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    1>------ Erstellen gestartet: Projekt: exe, Konfiguration: Debug Win32 ------
    1>cl : Befehlszeile warning D9028: Fehler beim minimalen Neukompilieren, normale Erstellung wird durchgeführt.
    1> roflrofl.cpp
    1>e:\wowme\exe\exe\roflrofl.cpp(222): fatal error C1010: Unerwartetes Dateiende während der Suche nach dem vorkompilierten Header. Haben Sie möglicherweise vergessen, im Quellcode "#include "StdAfx.h"" einzufügen?
    ========== Erstellen: 0 erfolgreich, Fehler bei 1, 0 aktuell, 0 übersprungen ==========
    it's german but I think you can understand this, because your screenshots are german

  10. #25
    Cromon's Avatar Legendary


    Reputation
    840
    Join Date
    Mar 2008
    Posts
    714
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    create 3 empty projects (File -> New -> Project -> General -> Empty Project). Name one Mopaq, one VectoredHandler and one how ever you like. add a C++-file for each project and put the appropriate code into the files. Set the project type for Mopaq and VectoredHandler to DLL (Properties -> Configuration Properties -> General -> Configuration Type).

  11. #26
    Jimbob99's Avatar Private
    Reputation
    2
    Join Date
    Dec 2010
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Everything works and seems stable.
    VS10 and Win7 64bit.

    Appreciate it!

  12. #27
    BLUBBER511's Avatar Active Member
    Reputation
    58
    Join Date
    May 2007
    Posts
    105
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    doesnt work

    1>------ Erstellen gestartet: Projekt: Mopaq, Konfiguration: Debug Win32 ------
    1>cl : Befehlszeile warning D9028: Fehler beim minimalen Neukompilieren, normale Erstellung wird durchgeführt.
    1> mopaq.cpp
    1>e:\wowme\mopaq\mopaq\mopaq.cpp : fatal error C1902: Fehler im Programmdatenbank-Manager. Überprüfen Sie die Installation.
    ========== Erstellen: 0 erfolgreich, Fehler bei 1, 0 aktuell, 0 übersprungen ==========

  13. #28
    Cromon's Avatar Legendary


    Reputation
    840
    Join Date
    Mar 2008
    Posts
    714
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    And a tip:
    If you inject to many MPQs (lets say about 20) it can crash in SMemFree (actually in RtlpCoalesceFreeBlocks), dunno why yet.

    /Blubber511: Youre doin it wrong, youre most likely choosin Win32 Project and creates an PCH for you. But you projects cannot use PCH with that files. After creating the projects you should have NO file in the solution. The file you add with the code should be the one and only file that is in the solution. No automatically generated files (like in your case StdAfx.h and StdAfx.cpp)

  14. #29
    BLUBBER511's Avatar Active Member
    Reputation
    58
    Join Date
    May 2007
    Posts
    105
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I dont know what am I doing wrong?
    I create a new project and then there are 4 folders, no files.

    And what does PCH mean?

  15. #30
    Cromon's Avatar Legendary


    Reputation
    840
    Join Date
    Mar 2008
    Posts
    714
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BLUBBER511 View Post
    I dont know what am I doing wrong?
    I create a new project and then there are 4 folders, no files.

    And what does PCH mean?
    PCH means precompiled header. But ive seen that you edited the error message into your previous posting. To the error theres once this:
    Schwerwiegender Fehler C1902 (C++)

    And try the following: Build -> Clean Solution and then Build -> Rebuild Solution.

Page 2 of 14 FirstFirst 123456 ... LastLast

Similar Threads

  1. Model Editing Fun!
    By Matt in forum World of Warcraft Model Editing
    Replies: 100
    Last Post: 01-22-2007, 05:41 PM
  2. 45 minutes of model editing and path exploiting
    By Matt in forum World of Warcraft General
    Replies: 2
    Last Post: 09-17-2006, 09:51 PM
  3. Possible Model Editting (1.11) ?!
    By nobodyzero in forum World of Warcraft Exploits
    Replies: 9
    Last Post: 07-14-2006, 11:47 AM
  4. a model edit
    By Relz in forum World of Warcraft General
    Replies: 12
    Last Post: 07-12-2006, 09:38 PM
  5. questions about model editing
    By Avianar47 in forum World of Warcraft General
    Replies: 2
    Last Post: 07-08-2006, 09:41 PM
All times are GMT -5. The time now is 08:51 AM. 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