Heard about a mod that lets you zoom camera out super far? menu

User Tag List

Results 1 to 12 of 12
  1. #1
    automationarmy's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Apr 2013
    Posts
    172
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Heard about a mod that lets you zoom camera out super far?

    While doing Levi EX someone was discussing this. Interested for obv reasons. Anyone?

    Heard about a mod that lets you zoom camera out super far?
  2. #2
    Tassabra's Avatar Member
    Reputation
    12
    Join Date
    Sep 2008
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  3. #3
    automationarmy's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Apr 2013
    Posts
    172
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    your the MAN ty vm! (any risk to using this so long as you keep your trap closed?)

  4. #4
    klash6's Avatar Private
    Reputation
    1
    Join Date
    May 2014
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you very much, with that i can see any dive ^^

  5. #5
    SpankyDaD's Avatar Member
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Has this been updated for the patch? It doesn't work for me after 2.28

  6. #6
    automationarmy's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Apr 2013
    Posts
    172
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ouch. Havent used it in awhile but Im sure I will at some point. Its quite useful. I don't even know where it comes from or that would be a good place to start looking for updates.

    Anyone?

  7. #7
    automationarmy's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Apr 2013
    Posts
    172
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    best I can tell a guy named maury ishaxin (game name) who ironically plays(ed) ffxiv on my server created the hack. He's not online atm and courtesy of some googling it appears he dropped an app in for a wildstar guild so im not sure if he's ever coming back.

    That being said - I'm not sure what it would take to update or if anyone can.. but it would be awesome if so. Im not sure if its something as simple as editing an ini with the version number ala out of date wow addons or if its much more complicated...

    either way - I wouldn't count on him being available to do so >.<

  8. #8
    Tassabra's Avatar Member
    Reputation
    12
    Join Date
    Sep 2008
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I sent him a PM on reddit, but no response either. Guess he is gone for good. I'll try to decompile his exe and see if it's an easy fix.

  9. #9
    ndcx's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    [[ffxiv.exe+EE8A80]+F0]

    or

    <?xml version="1.0" encoding="utf-8"?>
    <CheatTable>
    <CheatEntries>
    <CheatEntry>
    <ID>16</ID>
    <Description>"Max Zoom (Default: 20)"</Description>
    <Color>80000008</Color>
    <VariableType>Float</VariableType>
    <Address>ffxiv.exe+EE8A80</Address>
    <Offsets>
    <Offset>F0</Offset>
    </Offsets>
    </CheatEntry>
    </CheatEntries>
    </CheatTable>
    Last edited by ndcx; 06-25-2014 at 08:41 PM.

  10. #10
    automationarmy's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Apr 2013
    Posts
    172
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tassabra - I will love you. This "hack" has SO many applications/uses beyond leviathan that its a wonder its not integrated into some of the other tools available. With that said, it would be a shame if this died/went away.

    Please keep us posted.

    ndcx - I wish I knew what to do w/ that lol - its on my to do list...seriously!

  11. #11
    ndcx's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You can try this i suppose: Link
    You might need to install the 2012 c++ runtimes

    sauce:
    Code:
    #include <Windows.h>
    #include <stdio.h>
    #include <conio.h>
    
    #include <TlHelp32.h>
    
    HANDLE hProcess = NULL;
    DWORD  dwFFBase = 0;;
    BOOL   SetZoom(FLOAT fZoom);
    DWORD  GetModuleAddress(DWORD ProcessId, CHAR* pModuleName);
    
    int main (int argc, char** argv)
    {
    	// Get handle to FF14's window
    	HWND hWndFF = FindWindow(0, "FINAL FANTASY XIV: A Realm Reborn");
    	if (!hWndFF) return 1;
    	// Obtain process FF14's process id
    	DWORD dwProcessId = 0;
    	GetWindowThreadProcessId(hWndFF, &dwProcessId);
    	if (!dwProcessId) return 1;
    	// Get handle to base module
    	dwFFBase = GetModuleAddress(dwProcessId, "ffxiv.exe");
    	if (!dwFFBase) return 1;
    	// Get handle to FF14's process
    	hProcess = OpenProcess(PROCESS_ALL_ACCESS, false, dwProcessId);
    	if (!hProcess) return 1;
    	// Process user input
    	do
    	{
    		printf_s("Enter a value of 0 to exit.\n");
    		printf_s("Set max zoom value (default: 20): ");
    
    		FLOAT fZoom = 0;
    		scanf_s("%f", &fZoom);
    
    		if (fZoom == 0) break;
    
    		if (!SetZoom(fZoom))
    			printf_s("Failed to set new zoom value.\n");
    	}
    	while (true);
    
    	CloseHandle(hProcess);
    	return 0;
    }
    
    BOOL SetZoom(FLOAT fZoom)
    {
    	DWORD dwZoomPtr = 0;
    	ReadProcessMemory(hProcess, (DWORD*)(dwFFBase + 0x00EE8A80), &dwZoomPtr, sizeof(DWORD), 0);
    	if (!dwZoomPtr) return false;
    	return WriteProcessMemory(hProcess, (FLOAT*)(dwZoomPtr + 0xF0), &fZoom, sizeof(FLOAT), 0);
    }
    
    DWORD GetModuleAddress(DWORD ProcessId, CHAR* pModuleName)
    {
    	HANDLE hProcessSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, ProcessId);
    	if (!hProcessSnapShot) return 0;
    
    	MODULEENTRY32 ModEntry;
    	ModEntry.dwSize = sizeof(MODULEENTRY32);
    
    	if (Module32First(hProcessSnapShot, &ModEntry))
    	{
    		do
    		{
    			if (lstrcmpi(ModEntry.szModule, pModuleName) == 0)
    			{
    				DWORD Ret = (DWORD)ModEntry.modBaseAddr;
    				CloseHandle(hProcessSnapShot);
    				return Ret;
    			}
    		}
    		while (Module32Next(hProcessSnapShot, &ModEntry));
    	}
    
    	CloseHandle(hProcessSnapShot);
    	return 0;
    }

  12. #12
    n3n's Avatar Private
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Last edited by n3n; 06-30-2014 at 09:33 PM.

Similar Threads

  1. Good site that let you evaluate your wow character
    By meimeifung in forum World of Warcraft Guides
    Replies: 13
    Last Post: 04-28-2009, 11:58 AM
  2. Nice bug that lets you kill your own faction
    By alnany in forum World of Warcraft Exploits
    Replies: 19
    Last Post: 12-25-2008, 10:17 PM
  3. Zoom camera out very far
    By KuRIoS in forum World of Warcraft Exploits
    Replies: 46
    Last Post: 08-11-2007, 02:05 AM
  4. Glider spots that let you leave it unmanned.
    By Yano in forum World of Warcraft Bots and Programs
    Replies: 16
    Last Post: 12-02-2006, 07:23 PM
All times are GMT -5. The time now is 11:51 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