[Request] Cat Quest II

Ask about cheats/tables for single player games here
User avatar
Scoubi7
Noobzor
Noobzor
Posts: 14
Joined: Tue Sep 24, 2019 7:58 pm
Reputation: 1

[Request] Cat Quest II

Post by Scoubi7 »

Hi !

Is it possible to create a cheat for "Cat Quest 2" to have a lot of money (and infinite Life) ?

I tried with Cheat Engine but the adress seems to change every time

krmit
Expert Cheater
Expert Cheater
Posts: 411
Joined: Wed Apr 19, 2017 7:02 am
Reputation: 60

Re: [Request] Cat Quest II

Post by krmit »

+1

nukza38
Expert Cheater
Expert Cheater
Posts: 80
Joined: Fri Mar 15, 2019 11:56 am
Reputation: 10

Re: [Request] Cat Quest II

Post by nukza38 »

+1

ZeroCry
What is cheating?
What is cheating?
Posts: 1
Joined: Wed Sep 25, 2019 6:59 am
Reputation: 0

Re: [Request] Cat Quest II

Post by ZeroCry »

+1, thanks

kaizerv
Expert Cheater
Expert Cheater
Posts: 51
Joined: Sat Apr 15, 2017 1:31 pm
Reputation: 51

Re: [Request] Cat Quest II

Post by kaizerv »

For the lolz :D
Attachments
Cat Quest II.CT
(3.25 KiB) Downloaded 540 times

User avatar
Scoubi7
Noobzor
Noobzor
Posts: 14
Joined: Tue Sep 24, 2019 7:58 pm
Reputation: 1

Re: [Request] Cat Quest II

Post by Scoubi7 »

Thanks a lot kaizerv

c2580525@urhen.com
What is cheating?
What is cheating?
Posts: 1
Joined: Wed Sep 25, 2019 7:58 pm
Reputation: 2

Re: [Request] Cat Quest II

Post by c2580525@urhen.com »

Try this pointer for godmode.
Spoiler

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>37</ID>
      <Description>"GodMode (HP resets to max on 0)"</Description>
      <DropDownList ReadOnly="1" DisplayValueAsItem="1">0:Disabled
1:Enabled
</DropDownList>
      <LastState Value="1" RealAddress="0D17BF34"/>
      <VariableType>Byte</VariableType>
      <Address>"mono.dll"+00371504</Address>
      <Offsets>
        <Offset>184</Offset>
        <Offset>104</Offset>
        <Offset>E0</Offset>
        <Offset>43C</Offset>
        <Offset>10</Offset>
      </Offsets>
    </CheatEntry>
  </CheatEntries>
</CheatTable>

yuri0212
Novice Cheater
Novice Cheater
Posts: 21
Joined: Tue Oct 16, 2018 1:38 am
Reputation: 3

Re: [Request] Cat Quest II

Post by yuri0212 »

c2580525@urhen.com wrote:
Wed Sep 25, 2019 8:03 pm
Try this pointer for godmode.
Spoiler

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>37</ID>
      <Description>"GodMode (HP resets to max on 0)"</Description>
      <DropDownList ReadOnly="1" DisplayValueAsItem="1">0:Disabled
1:Enabled
</DropDownList>
      <LastState Value="1" RealAddress="0D17BF34"/>
      <VariableType>Byte</VariableType>
      <Address>"mono.dll"+00371504</Address>
      <Offsets>
        <Offset>184</Offset>
        <Offset>104</Offset>
        <Offset>E0</Offset>
        <Offset>43C</Offset>
        <Offset>10</Offset>
      </Offsets>
    </CheatEntry>
  </CheatEntries>
</CheatTable>
it work perfect, thanks

yuri0212
Novice Cheater
Novice Cheater
Posts: 21
Joined: Tue Oct 16, 2018 1:38 am
Reputation: 3

Re: [Request] Cat Quest II

Post by yuri0212 »

Can you made infintive mana?

User avatar
Scoubi7
Noobzor
Noobzor
Posts: 14
Joined: Tue Sep 24, 2019 7:58 pm
Reputation: 1

Re: [Request] Cat Quest II

Post by Scoubi7 »

Could somebody explain me how to use the code for GodeMode ?

yuri0212
Novice Cheater
Novice Cheater
Posts: 21
Joined: Tue Oct 16, 2018 1:38 am
Reputation: 3

Re: [Request] Cat Quest II

Post by yuri0212 »

just copy code and paste it to cheat engine table

User avatar
Scoubi7
Noobzor
Noobzor
Posts: 14
Joined: Tue Sep 24, 2019 7:58 pm
Reputation: 1

Re: [Request] Cat Quest II

Post by Scoubi7 »

I don't understand where to paste it, there is several possibility to do this

And @kaizerv is it possible to add much more coins with F10 ?

kaizerv
Expert Cheater
Expert Cheater
Posts: 51
Joined: Sat Apr 15, 2017 1:31 pm
Reputation: 51

Re: [Request] Cat Quest II

Post by kaizerv »

Scoubi7 wrote:
Thu Sep 26, 2019 1:23 pm
I don't understand where to paste it, there is several possibility to do this

And @kaizerv is it possible to add much more coins with F10 ?
Select All to highlight the given code then Ctrl+C or R.click copy then go the Cheat Engine, at the white box where u always can toggle the cheat Ctrl+V or R.click Paste. It's actually a common question for someone new~

For your next question, of course it's possible. You can try what I explain above with this code that adjust the cheatmenu gold.

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>15</ID>
      <Description>"AdjustGold"</Description>
      <LastState Activated="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
aobscan(gold,81 C1 E8 03 00 00 83) // should be unique
alloc(newmem,$1000)
label(code)
label(return)
alloc(_gold,4)
registersymbol(_gold)
_gold:
  dd 0
newmem:
code:
  add ecx,[_gold]
  jmp return
gold:
  jmp newmem
  nop
return:
registersymbol(gold)
[DISABLE]
gold:
  db 81 C1 E8 03 00 00
unregistersymbol(gold)
dealloc(newmem)
unregistersymbol(_gold)
dealloc(_gold)

</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>16</ID>
          <Description>"Gold"</Description>
          <LastState Value="20000" RealAddress="0FFF1000"/>
          <VariableType>4 Bytes</VariableType>
          <Address>_gold</Address>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
  </CheatEntries>
</CheatTable>
Alright, Pika-out

paulolarrat
What is cheating?
What is cheating?
Posts: 1
Joined: Thu Sep 26, 2019 4:00 pm
Reputation: 0

Re: [Request] Cat Quest II

Post by paulolarrat »

kaizerv wrote:
Thu Sep 26, 2019 2:41 pm
Scoubi7 wrote:
Thu Sep 26, 2019 1:23 pm
I don't understand where to paste it, there is several possibility to do this

And @kaizerv is it possible to add much more coins with F10 ?
Select All to highlight the given code then Ctrl+C or R.click copy then go the Cheat Engine, at the white box where u always can toggle the cheat Ctrl+V or R.click Paste. It's actually a common question for someone new~

For your next question, of course it's possible. You can try what I explain above with this code that adjust the cheatmenu gold.

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>15</ID>
      <Description>"AdjustGold"</Description>
      <LastState Activated="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
aobscan(gold,81 C1 E8 03 00 00 83) // should be unique
alloc(newmem,$1000)
label(code)
label(return)
alloc(_gold,4)
registersymbol(_gold)
_gold:
  dd 0
newmem:
code:
  add ecx,[_gold]
  jmp return
gold:
  jmp newmem
  nop
return:
registersymbol(gold)
[DISABLE]
gold:
  db 81 C1 E8 03 00 00
unregistersymbol(gold)
dealloc(newmem)
unregistersymbol(_gold)
dealloc(_gold)

</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>16</ID>
          <Description>"Gold"</Description>
          <LastState Value="20000" RealAddress="0FFF1000"/>
          <VariableType>4 Bytes</VariableType>
          <Address>_gold</Address>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
  </CheatEntries>
</CheatTable>
Alright, Pika-out
how do i open the white box in cheat engine?

kaizerv
Expert Cheater
Expert Cheater
Posts: 51
Joined: Sat Apr 15, 2017 1:31 pm
Reputation: 51

Re: [Request] Cat Quest II

Post by kaizerv »

paulolarrat wrote:
Thu Sep 26, 2019 4:01 pm
how do i open the white box in cheat engine?
I never say to 'open' a white box. It's just there when you open CE. I'm gonna assume you're really-really new here ~ so here's a screenshot.
Bottom of CE
Image
I marked the white box with three bright colours, so you won't miss it. After that, u just need to r.click n paste anywhere around there.

Alright, Pika-out

Post Reply

Who is online

Users browsing this forum: 7hornadus, Google [Bot], SemrushBot