Minoria v1.07

Upload your cheat tables here (No requests)
Post Reply
User avatar
GamerCare
Table Makers
Table Makers
Posts: 255
Joined: Wed Jun 12, 2019 12:14 am
Reputation: 508

Minoria v1.07

Post by GamerCare »





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?
  1. Install Cheat Engine
  2. Double-click the .CT file in order to open it.
  3. Click the PC icon in Cheat Engine in order to select the game process.
  4. Keep the list.
  5. Activate the trainer options by checking boxes or setting values from 0 to 1
Attachments
Minoria v1.07.CT
(61.98 KiB) Downloaded 628 times
Minoria +9.CT
(5.98 KiB) Downloaded 214 times
Last edited by GamerCare on Fri Nov 01, 2019 7:40 pm, edited 4 times in total.

User avatar
fantomas
Table Makers
Table Makers
Posts: 1163
Joined: Sat Mar 25, 2017 7:13 pm
Reputation: 552

Re: Minoria +9

Post by fantomas »

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 --

Image
Attachments
Minoria_v1.03.CT
(24.17 KiB) Downloaded 170 times
Last edited by fantomas on Thu Sep 05, 2019 9:42 am, edited 1 time in total.

User avatar
liu-p
Noobzor
Noobzor
Posts: 14
Joined: Sun Jul 28, 2019 1:00 am
Reputation: 2

Re: Minoria +9

Post by liu-p »

谢谢制作分享。!

User avatar
roioros
Expert Cheater
Expert Cheater
Posts: 74
Joined: Sun Jun 25, 2017 1:29 am
Reputation: 13

Re: Minoria +9

Post by roioros »

Hi!
Thanks a lot for the table, but could you please update it to the latest version of the game (1.0.7)?

Thanks!

User avatar
GamerCare
Table Makers
Table Makers
Posts: 255
Joined: Wed Jun 12, 2019 12:14 am
Reputation: 508

Re: Minoria +9

Post by GamerCare »

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.

User avatar
roioros
Expert Cheater
Expert Cheater
Posts: 74
Joined: Sun Jun 25, 2017 1:29 am
Reputation: 13

Re: Minoria v1.07

Post by roioros »

Fantastic!!

Thank you so much for the updated table, you're incredible!!

Metal_Havoc
What is cheating?
What is cheating?
Posts: 1
Joined: Sat Nov 07, 2020 9:47 pm
Reputation: 0

Re: Minoria v1.07

Post by Metal_Havoc »

Will this table ever be updated for V 1.084C on Steam?

wrace
What is cheating?
What is cheating?
Posts: 3
Joined: Fri Sep 10, 2021 11:16 pm
Reputation: 3

Re: Minoria v1.07

Post by wrace »

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 226 times

Post Reply