Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Beatrici <davidebeatrici@users.noreply.github.com>2016-06-29 02:17:16 +0300
committerGitHub <noreply@github.com>2016-06-29 02:17:16 +0300
commite1b80c0e4f798c7bafe6662ab511db3d390a4c05 (patch)
tree4f3dbbfd3c640e833875351fb5613e17924167d4 /plugins/rl
parenta297a24b41564630dfc963a83514ae0ab293c122 (diff)
plugins/rl: Plugin update for game's latest version
Game version: 1.20 http://www.rocketleaguegame.com/news/2016/06/rocket-league-patch-notes-v1-20
Diffstat (limited to 'plugins/rl')
-rw-r--r--plugins/rl/rl.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/rl/rl.cpp b/plugins/rl/rl.cpp
index 3fff13927..0e23cb0b8 100644
--- a/plugins/rl/rl.cpp
+++ b/plugins/rl/rl.cpp
@@ -13,7 +13,7 @@ static int fetch(float *avatar_pos, float *avatar_front, float *avatar_top, floa
bool ok;
// Avatar pointers
- procptr32_t avatar_base = peekProc<procptr32_t>(pModule + 0x0170B5A4);
+ procptr32_t avatar_base = peekProc<procptr32_t>(pModule + 0x017085A4);
if (!avatar_base) return false;
procptr32_t avatar_offset_0 = peekProc<procptr32_t>(avatar_base + 0x448);
if (!avatar_offset_0) return false;
@@ -26,10 +26,10 @@ static int fetch(float *avatar_pos, float *avatar_front, float *avatar_top, floa
// Peekproc and assign game addresses to our containers, so we can retrieve positional data
ok = peekProc(avatar_offset + 0x0, avatar_pos, 12) && // Avatar Position values (X, Y and -Z).
- peekProc(pModule + 0x0170B7E0, camera_pos, 12) && // Camera Position values (X, Y and -Z).
+ peekProc(pModule + 0x017087E0, camera_pos, 12) && // Camera Position values (X, Y and -Z).
peekProc(avatar_offset + 0xC, avatar_front, 12) && // Avatar Front values (X, Y and -Z).
- peekProc(pModule + 0x0170B7C8, camera_front, 12) && // Camera Front Vector values (X, Y and -Z).
- peekProc(pModule + 0x0170B7D4, camera_top, 12); // Camera Top Vector values (X, Y and -Z).
+ peekProc(pModule + 0x017087C8, camera_front, 12) && // Camera Front Vector values (X, Y and -Z).
+ peekProc(pModule + 0x017087D4, camera_top, 12); // Camera Top Vector values (X, Y and -Z).
// This prevents the plugin from linking to the game in case something goes wrong during values retrieval from memory addresses.
if (! ok)
@@ -65,10 +65,10 @@ static int trylock(const std::multimap<std::wstring, unsigned long long int> &pi
}
static const std::wstring longdesc() {
- return std::wstring(L"Supports Rocket League version 1.19 without context or identity support yet."); // Plugin long description
+ return std::wstring(L"Supports Rocket League version 1.20 without context or identity support yet."); // Plugin long description
}
-static std::wstring description(L"Rocket League (v1.19)"); // Plugin short description
+static std::wstring description(L"Rocket League (v1.20)"); // Plugin short description
static std::wstring shortname(L"Rocket League"); // Plugin short name
static int trylock1() {