Change FoV/zoom & Render terrain, m2, wmo, liquid, wireframe, collision menu

User Tag List

Page 2 of 2 FirstFirst 12
Results 16 to 26 of 26
  1. #16
    danielx's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    everytime i uses it i get error 299, and error 87. (in the the program it self)
    using either on wotlk and cata pservers
    Last edited by danielx; 04-15-2013 at 05:50 PM.

    Change FoV/zoom & Render terrain, m2, wmo, liquid, wireframe, collision
  2. #17
    danielx's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    deleted - spam due lag

  3. #18
    para_'s Avatar Active Member 01001100 01001111 01001100 CoreCoins Purchaser
    Reputation
    56
    Join Date
    Aug 2008
    Posts
    55
    Thanks G/R
    16/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by danielx View Post
    everytime i uses it i get error 299, and error 87. (in the the program it self)
    using either on wotlk and cata pservers
    The offsets this program uses are version 5.2 (16826) specific. It won't work with anything but retail. To make this work for your WotLK or Cata servers you would need to look at the version of WoW it uses and find the 'Info Dump Thread' for that version in the Memory Editing section. If you look at the source code of what I posted a few changes would be necessary:

    Code:
    WoWbase_PLUS_D5153C = WoWbaseaddress + 13964604;
    Code:
    stepA = (char*)stepA + 0x8150;
    You'd look at the function in the IDB file (assuming it's provided) and see what address plus offset is being used. In the IDB file for 16826 the pseudocode for part of the GetActiveCamera() function is:

    Code:
      if ( dword_D5153C )
        result = *(_DWORD *)(dword_D5153C + 0x8150);
    You would just change the number 8150 and 13964604 (the decimal notation of D5153C) in the source code provided in the original post of this thread.

    Now this is assuming the Camera ptr struct is the same. I don't know if that's the case. Most anyone in the Memory Editing section would know better than me. The only reason I knew is due to Master674 when he posted it at http://www.ownedcore.com/forums/worl...1-fov-wow.html (FoV in wow) ..
    Last edited by para_; 04-15-2013 at 06:48 PM.

  4. #19
    danielx's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    many thanks for the help.
    although i can't seems to compile it, it gives up an error of a missing header file.

    many thanks

  5. #20
    para_'s Avatar Active Member 01001100 01001111 01001100 CoreCoins Purchaser
    Reputation
    56
    Join Date
    Aug 2008
    Posts
    55
    Thanks G/R
    16/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Responded to your PM regarding the compile issues. His question - in case anyone else is having the same trouble - was that afx.h wasn't being found. Best course of action is to make sure you have the full version of Visual C++ and not the express edition. If you have the full version try commenting it out and see what errors that gives you. It could give hints as to what functions need to be defined which you then search to see which headers do define them other than afx.h

  6. #21
    phrito's Avatar Member
    Reputation
    2
    Join Date
    Sep 2006
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any chance you can add remove fog capability? thanks great work

  7. #22
    Owneth's Avatar Active Member
    Reputation
    56
    Join Date
    Feb 2011
    Posts
    362
    Thanks G/R
    6/22
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here's a video of the fog removal... So I know it's possible:


    Also check out this for Machinima Tool:
    http://www.ownedcore.com/forums/worl...n-off-fog.html (Turn off fog?)
    Last edited by Owneth; 04-17-2013 at 10:59 AM.

  8. #23
    Jadd's Avatar 🐸 Premium Seller
    Reputation
    1511
    Join Date
    May 2008
    Posts
    2,432
    Thanks G/R
    81/333
    Trade Feedback
    1 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by wightolore View Post
    EDIT: Works!
    Make sure to use 32-bit WoW and if you're missing "mfc100u.dll" just download Microsoft Visual C++ 2010 SP1 Redistributable package.
    Compile it as release rather than debug.

  9. #24
    para_'s Avatar Active Member 01001100 01001111 01001100 CoreCoins Purchaser
    Reputation
    56
    Join Date
    Aug 2008
    Posts
    55
    Thanks G/R
    16/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ultra: https://i.imgur.com/uU3LyjQ.jpg
    Higher view distance: https://i.imgur.com/T1qRElK.jpg
    Memory view: https://i.imgur.com/yzqAZZA.png

    I found a kind of quick fix for increased view distance / minus fog but it crashes the client sometimes. Use cheat engine and mess around with these four address as floats to see if it suits you.

    Wow.exe+E225FC <-- hafta change via below or freeze first
    Wow.exe+E22600 <-- changes the value above with it (mainly toy with this one)
    Wow.exe+E22604 <-- not sure
    Wow.exe+E22608 <-- not sure
    Last edited by para_; 04-17-2013 at 07:49 PM.

  10. #25
    para_'s Avatar Active Member 01001100 01001111 01001100 CoreCoins Purchaser
    Reputation
    56
    Join Date
    Aug 2008
    Posts
    55
    Thanks G/R
    16/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the rep, Alfalfa. I updated the original program to change FoV as I know that's what most people wanted in the first place. If anyone wants the other features I can try working on them. The update is in the main post.

  11. #26
    Alfalfa's Avatar Legendary
    Reputation
    746
    Join Date
    Feb 2013
    Posts
    669
    Thanks G/R
    70/79
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by wightolore View Post
    Thanks for the rep, Alfalfa. I updated the original program to change FoV as I know that's what most people wanted in the first place. If anyone wants the other features I can try working on them. The update is in the main post.
    Sure, I loved the zoom feature too btw, let's you see far out without having it very distorted. Fun program.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Tool] Vision - A Simple Tool for Changing FoV in WoW
    By Torpedoes in forum World of Warcraft Bots and Programs
    Replies: 10
    Last Post: 09-01-2017, 05:28 PM
  2. [Tool] ArcheAge FOV/Zoom fix
    By Tobii in forum ArcheAge Bots and Programs
    Replies: 32
    Last Post: 05-03-2015, 11:03 PM
  3. WMO - MOPY chunk - collision flag
    By fish2k in forum WoW Memory Editing
    Replies: 6
    Last Post: 04-10-2009, 05:21 AM
  4. Some more terrain changes...
    By Cursed in forum World of Warcraft Model Editing
    Replies: 5
    Last Post: 09-25-2007, 11:09 AM
  5. Regarding Terrain changing .mpq files
    By Lunarain in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 07-06-2007, 02:46 PM
All times are GMT -5. The time now is 06:23 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