Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Other MMORPG Hacks › Trove Hacks & Cheats › Finding Viewmatrix

Finding Viewmatrix

Posts 1–3 of 3 · Page 1 of 1
QA
qalvynn
Finding Viewmatrix
Ive spent a long time trying to figure out how to get the view matrix and i just cant do it If anybody would be willing to help i would appreciate it and i will kiss you
#1 · 5mo ago
FAISAL32
FAISAL32
Quote Originally Posted by qalvynn View Post
Ive spent a long time trying to figure out how to get the view matrix and i just cant do it If anybody would be willing to help i would appreciate it and i will kiss you
finding the viewmatrix in trove isnt that hard once you know where to look

the easiest way is to get it through the localPlayer
usually the chain is like
localPlayer -> 0x20 -> viewMatrix offset

also keep in mind the game can run on directx or opengl depending on user settings
because of that the viewmatrix should be treated as column-major, not row-major


if you want it as variables, here is how it looks in python:

Code:
localplayer = 0x10B1A90

ViewMatrixChainOffset = [0x20, 0x1F0]
ResolutionWidthOffset = [0x20, 0x2C0]
ResolutionHeightOffset = [0x20, 0x2C4]

and the same thing in C++:

Code:
#include <vector>
#include <cstdint>

uintptr_t localPlayer = 0x10B1A90;

std::vector<uintptr_t> ViewMatrixChain = { 0x20, 0x1F0 };
std::vector<uintptr_t> ResolutionWidthChain = { 0x20, 0x2C0 };
std::vector<uintptr_t> ResolutionHeightChain = { 0x20, 0x2C4 };
and yeah…
dont forget my kiss
#2 · 5mo ago
QA
qalvynn
Thank you mwah
this is what i found in my attempt " viewmatrix = camerabaseptr + 0x540 " lmao MWAH
#3 · 5mo ago
Posts 1–3 of 3 · Page 1 of 1

Post a Reply

Similar Threads

  • Finding GPSBy Fortran in WarRock - International Hacks
    3Last post 19y ago
  • Finding a certain mod?By 3-sum in Combat Arms Help
    6Last post 16y ago
  • Finding out what map you are on?By NOOB in Combat Arms Coding Help & Discussion
    14Last post 15y ago
  • [HELP]Finding EPPBy Amatowarrior in Combat Arms Hack Coding / Programming / Source Code
    13Last post 16y ago
  • help finding a picBy Imperial Commando in Help & Requests
    0Last post 16y ago

Tags for this Thread

None