Upload your cheat tables here (No requests)
GamerCare
Table Makers
Posts: 255 Joined: Wed Jun 12, 2019 12:14 am
Reputation: 513
Post
by GamerCare » Wed Aug 28, 2019 10:04 pm
VIDEO
Cheats:
- Godmode
- Infinite Incenses
- Level
- Current Exp
- Physical Atk
- Magic Atk
- Physical Defense
- Magic Defense
updated to v1.07
How to use this cheat table?
Install Cheat Engine
Double-click the .CT file in order to open it.
Click the PC icon in Cheat Engine in order to select the game process.
Keep the list.
Activate the trainer options by checking boxes or setting values from 0 to 1
Attachments
Minoria v1.07.CT
(61.98 KiB) Downloaded 739 times
Minoria +9.CT
(5.98 KiB) Downloaded 260 times
Last edited by
GamerCare on Fri Nov 01, 2019 7:40 pm, edited 4 times in total.
fantomas
Table Makers
Posts: 1162 Joined: Sat Mar 25, 2017 7:13 pm
Reputation: 556
Post
by fantomas » Wed Aug 28, 2019 11:26 pm
This script will allow you to unlock (open) any door w/o the key requirement. At least, you have to inspect the door in first, then the door will open.
Code: Select all
{ Game : Minoria
Version:
Date : 2019-08-28
Author : fantomas
}
{$lua}
if syntaxcheck then return end
cheat_name = "DoorUnlocked"
[ENABLE]
local pattern = "75 1D 48 8B CE 48 83 EC 20 49 BB ?? ?? ?? ?? ?? ?? ?? ?? 41 FF D3 48 83 C4 20 E9 ?? ?? ?? ?? 0F"
local replace = "74 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??"
-- edit the name of the cheat
-- edit the pattern to search
-- edit the replacement bytes
-- use ?? to ignore the bytes
-- do not edit the code below
local scans = AOBScan(pattern)
if scans == nil then
showMessage("Unable to find pattern:\n"..pattern)
else
local saved = {}
local length = (#replace + 1) / 3
for i = 0, scans.Count - 1 do
local backup = readBytes(scans[i], length, true)
local bytes = {}
for hex in string.gmatch(replace, "%S+") do
local size = #bytes + 1
if hex == "??" then
bytes[size] = backup[size]
else
bytes[size] = tonumber(hex, 16)
end
end
saved[i] = backup
writeBytes(scans[i], bytes)
end
_G[cheat_name] = {
["scans"] = scans,
["saved"] = saved
}
end
[DISABLE]
local vars = _G[cheat_name]
if vars ~= nil then
local scans = vars.scans
local saved = vars.saved
for i = 0, scans.Count - 1 do
writeBytes(scans[i], saved[i])
end
scans.Destroy()
vars.scans = nil
vars.saved = nil
vars = nil
_G[cheat_name] = nil
end
{$asm}
{
// ORIGINAL CODE - INJECTION POINT: Door:OnTalk+1f
046AB422: 8B EC - mov ebp,esp
046AB424: 56 - push rsi
046AB425: 57 - push rdi
046AB426: 48 83 EC 70 - sub rsp,70
046AB42A: 48 8B F1 - mov rsi,rcx
046AB42D: 33 C0 - xor eax,eax
046AB42F: 48 89 45 B0 - mov [rbp-50],rax
046AB433: 89 45 B8 - mov [rbp-48],eax
046AB436: 0F B6 86 CA 00 00 00 - movzx eax,byte ptr [rsi+000000CA]
046AB43D: 85 C0 - test eax,eax
// ---------- INJECTING HERE ----------
046AB43F: 75 1D - jne 046AB45E
046AB441: 48 8B CE - mov rcx,rsi
// ---------- DONE INJECTING ----------
046AB444: 48 83 EC 20 - sub rsp,20
046AB448: 49 BB 20 4F 7D 22 00 00 00 00 - mov r11,00000000227D4F20
046AB452: 41 FF D3 - call r11
046AB455: 48 83 C4 20 - add rsp,20
046AB459: E9 9C 04 00 00 - jmp 046AB8FA
046AB45E: 0F B6 86 CB 00 00 00 - movzx eax,byte ptr [rsi+000000CB]
046AB465: 85 C0 - test eax,eax
046AB467: 0F 84 52 00 00 00 - je 046AB4BF
046AB46D: 48 8B 04 25 D0 EE C9 01 - mov rax,[01C9EED0]
046AB475: 48 8B C8 - mov rcx,rax
}
--Edit --
Attachments
Minoria_v1.03.CT
(24.17 KiB) Downloaded 193 times
Last edited by
fantomas on Thu Sep 05, 2019 9:42 am, edited 1 time in total.
liu-p
Novice Cheater
Posts: 17 Joined: Sun Jul 28, 2019 1:00 am
Reputation: 2
Post
by liu-p » Sun Sep 01, 2019 10:20 am
谢谢制作分享。!
roioros
Expert Cheater
Posts: 89 Joined: Sun Jun 25, 2017 1:29 am
Reputation: 20
Post
by roioros » Fri Nov 01, 2019 6:06 pm
Hi!
Thanks a lot for the table, but could you please update it to the latest version of the game (1.0.7)?
Thanks!
GamerCare
Table Makers
Posts: 255 Joined: Wed Jun 12, 2019 12:14 am
Reputation: 513
Post
by GamerCare » Fri Nov 01, 2019 7:38 pm
roioros wrote: ↑ Fri Nov 01, 2019 6:06 pm
Hi!
Thanks a lot for the table, but could you please update it to the latest version of the game (1.0.7)?
Thanks!
updated to v1.07.
roioros
Expert Cheater
Posts: 89 Joined: Sun Jun 25, 2017 1:29 am
Reputation: 20
Post
by roioros » Sat Nov 02, 2019 3:04 am
Fantastic!!
Thank you so much for the updated table, you're incredible!!
Metal_Havoc
What is cheating?
Posts: 1 Joined: Sat Nov 07, 2020 9:47 pm
Reputation: 0
Post
by Metal_Havoc » Sat Nov 07, 2020 9:50 pm
Will this table ever be updated for V 1.084C on Steam?
wrace
What is cheating?
Posts: 3 Joined: Fri Sep 10, 2021 11:16 pm
Reputation: 3
Post
by wrace » Sat Apr 23, 2022 9:27 pm
Cheat Engine table for the Minoria (version of 2 August 2021). Feature - god which includes:
invulnerable
no status effects
items and charges = max
2x speed, high jump, infinite jump / dash
3x damage and 2x XP (permanent effect of some items)
no decrease of hp on items (StainedAzurina, PoemeDrop, Freesia)
P.S.: you should allow to execute LUA script at the opening of the attached cheat table; if you have some doubts for this, do not allow to execute LUA script, follow Table/Show Cheat Table Lua Script in the menu of Cheat Engine, view the script which will be executed at the opening of attached cheat table and run it manually after this because it contains useful functions scanr and scanz which allow to simplify the code of cheats.
Attachments
Minoria.ct
(4.04 KiB) Downloaded 281 times