Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

14.12 Data Structure Update #1206

Open
wants to merge 60 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
cdc8c8c
Update SkinDatabase.cpp
hydy100 Jun 16, 2024
7feebb9
Update ChampionManager.hpp
hydy100 Jun 16, 2024
b479fdf
update offsets
hydy100 Jun 19, 2024
dd9a1ba
Update Hall of Fame Ahri mode
hydy100 Jun 23, 2024
509216a
14.13 offsets Update
hydy100 Jun 26, 2024
967d2f6
Update memory.hpp
hydy100 Jun 27, 2024
e910d59
Update 14.13 SkinId
hydy100 Jul 17, 2024
010de1f
Update 14.14 SkinId
hydy100 Jul 17, 2024
c9cfdcf
14.16_PBE_GetGoldRedirectTarget_Update
hydy100 Aug 5, 2024
afffe7d
14.16_PBE_SkinId_Update
hydy100 Aug 7, 2024
227e13e
14.16_PBE_HeroList_Update
hydy100 Aug 8, 2024
647a927
Merge pull request #83 from hydy100/PBE_version
hydy100 Aug 14, 2024
e7982b6
Update offsets.hpp
hydy100 Aug 14, 2024
e0a61a8
Update GUI.cpp
hydy100 Aug 14, 2024
0e65e87
Synchronize skins
hydy100 Aug 14, 2024
5194b48
Fixed an issue where other champions' skins would revert.
hydy100 Aug 15, 2024
2e6d333
Update README.md
hydy100 Aug 18, 2024
aa2f91d
14.17_PBE_Memory_Update
hydy100 Aug 18, 2024
a9863bc
14.17_PBE_Ward_Skin_Update
hydy100 Aug 18, 2024
0a998bd
Update offsets.hpp
hydy100 Aug 18, 2024
f6b3256
Update encryption.hpp
hydy100 Aug 25, 2024
fc69e83
Update SkinId
hydy100 Aug 25, 2024
5abd255
Update Hooks.cpp
hydy100 Aug 25, 2024
2e3ebf4
Update encryption.hpp
hydy100 Aug 25, 2024
01b025f
Update SkinId
hydy100 Aug 25, 2024
1114f18
Merge pull request #125 from hydy100/PBE_version
hydy100 Aug 28, 2024
8b8df6e
14.19_PBE_Update
hydy100 Sep 11, 2024
89b9848
14.19_PBE_Update
hydy100 Sep 19, 2024
69468e7
Update offsets.hpp
hydy100 Oct 16, 2024
01ff483
14.21_PBE_Update
hydy100 Oct 16, 2024
3244b52
14.21 version update
hydy100 Oct 23, 2024
45e0ebf
Update offsets.hpp
hydy100 Nov 4, 2024
d84ad57
Update memory.hpp
hydy100 Nov 4, 2024
d3016ae
14.22 Version
hydy100 Nov 6, 2024
45b5af1
Update offsets.hpp
hydy100 Nov 7, 2024
865471f
Update Hooks.cpp
hydy100 Nov 7, 2024
0fbb8b7
Update offsets.hpp
hydy100 Nov 7, 2024
2b96ae5
Update Hooks.cpp
hydy100 Nov 7, 2024
a291c07
Update README.md
hydy100 Nov 17, 2024
ee64bdb
Update README_zh.md
hydy100 Nov 17, 2024
bbe0d1d
Update README.md
hydy100 Nov 25, 2024
f0a3017
Update README_zh.md
hydy100 Nov 25, 2024
5cd19f6
Update README.md
hydy100 Nov 25, 2024
c5c281c
Update README.md
hydy100 Nov 25, 2024
8a162d5
Update memory.hpp
hydy100 Nov 30, 2024
4b2d065
Update offsets.hpp
hydy100 Nov 30, 2024
dee5f4a
Update GUI.cpp
hydy100 Nov 30, 2024
2fb8fc0
Update SkinDatabase.hpp
hydy100 Nov 30, 2024
41577f0
Update Hooks.cpp
hydy100 Nov 30, 2024
d818d13
Update GameObject.hpp
hydy100 Nov 30, 2024
243c226
Update SkinDatabase.hpp
hydy100 Dec 4, 2024
08e0afe
Update memory.hpp
hydy100 Dec 4, 2024
04cc9ae
Update SkinDatabase.hpp
hydy100 Dec 11, 2024
027dfaf
Merge branch 'main' into PBE_version
hydy100 Dec 11, 2024
c15eef4
14.24 Version
hydy100 Dec 11, 2024
55850f1
Update Jinx_skin
hydy100 Dec 11, 2024
c013806
Update SkinDatabase.hpp
hydy100 Jan 9, 2025
d41a35e
Update GUI.cpp
hydy100 Jan 9, 2025
063bd77
Update README.md
hydy100 Jan 11, 2025
d02a606
Update README_zh.md
hydy100 Jan 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion R3nzSkin/SDK/ChampionManager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@

#include "Champion.hpp"
#include "Pad.hpp"
#include "RiotArray.hpp"

class ChampionManager {
PAD(0x18)
std::vector<Champion*> champions;
RiotArray<Champion*> champions;
};
3 changes: 2 additions & 1 deletion R3nzSkin/SkinDatabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@

void SkinDatabase::load() noexcept
{
for (const auto& champion : cheatManager.memory->championManager->champions) {
for (auto j{ 0 }; j < cheatManager.memory->championManager->champions.size;++j) {
const auto& champion = cheatManager.memory->championManager->champions.list[j];
std::vector<std::int32_t> skins_ids;

for (auto i{ 0 }; i < champion->skins.size; ++i)
Expand Down