Devil May Cry 5 (Steam) - Cheat Table

Upload your cheat tables here (No requests)
Locked
Raven
What is cheating?
What is cheating?
Posts: 2
Joined: Mon Mar 11, 2019 11:56 am
Reputation: 0

Re: Devil May Cry 5 (Steam) - Cheat Table

Post by Raven »

KS212 wrote:
Mon Mar 11, 2019 12:19 pm
This is a singleplayer game... There's nothing to ban from.
Basically due to Red orbs being micro-transactions i thought there MIGHT be some issues with it. thanks for the answer tho

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

Nazca
Noobzor
Noobzor
Posts: 14
Joined: Mon Mar 11, 2019 7:42 am
Reputation: 0

Re: Devil May Cry 5 (Steam) - Cheat Table

Post by Nazca »

Can someone make a script like no one dies (enemy and player), it would be great!

KS212
Expert Cheater
Expert Cheater
Posts: 1113
Joined: Fri Mar 03, 2017 5:29 pm
Reputation: 136

Re: Devil May Cry 5 (Steam) - Cheat Table

Post by KS212 »

Raven wrote:
Mon Mar 11, 2019 12:29 pm

Basically due to Red orbs being micro-transactions i thought there MIGHT be some issues with it. thanks for the answer tho
Considering the first thing we did is cheat Red Orbs to hell and back... even in DMC4SE... I doubt they care :P

It really does surprise me that there's ppl bitching about the Red Orb MT's and calling it pay 2 win... Only absolute noobs to the series will get suckered in by them. 1 mil Red Orbs is absolutely jack shit nothing... you'd think ppl would learn from DMC4SE which had the SAME THING...

Eminan
Noobzor
Noobzor
Posts: 10
Joined: Wed Sep 13, 2017 7:50 pm
Reputation: 0

Re: Devil May Cry 5 (Steam) - Cheat Table

Post by Eminan »

You can add red orbs yourself, it's really easy. As a recommendation disconnect internet when doing it, i don´t know if Capcom has a way to know if you cheated orbs or not, but as they are selling them maybe.
I did it launch day and nothing happened to me at least

KS212
Expert Cheater
Expert Cheater
Posts: 1113
Joined: Fri Mar 03, 2017 5:29 pm
Reputation: 136

Re: Devil May Cry 5 (Steam) - Cheat Table

Post by KS212 »

Eminan wrote:
Mon Mar 11, 2019 12:48 pm
You can add red orbs yourself, it's really easy. As a recommendation disconnect internet when doing it, i don´t know if Capcom has a way to know if you cheated orbs or not, but as they are selling them maybe.
I did it launch day and nothing happened to me at least
They truly don't care. If they cared, they would have cared a lot more when ppl hacked DMC4/SE way back.

I doubt they even have a facility to track who has what orbs as once Dr Faust gets into play, all bets are off anyway.

JustBored
Novice Cheater
Novice Cheater
Posts: 21
Joined: Mon Feb 11, 2019 5:07 am
Reputation: 0

Re: Devil May Cry 5 (Steam) - Cheat Table

Post by JustBored »

Thank you for this, i mean the trainer was ok too, after beating dmd mode a lot of stuff was more experimental.is there a way that you can get the "charge" skill for neros blue rose to max?

OleMagne
Fearless Donors
Fearless Donors
Posts: 111
Joined: Wed Mar 14, 2018 7:54 pm
Reputation: 56

Re: Devil May Cry 5 (Steam) - Cheat Table

Post by OleMagne »

SunBeam wrote:
Mon Mar 11, 2019 11:54 am

Code: Select all

function _readInteger( Input )
  -- thanks, Pox!
  local Value = readInteger( Input )
  if Value < 0x80000000 then return Value
  else return Value - 0x100000000 end
end

function GetName( input )
  local addr = readQword( readQword( readQword( readQword( input ) ) + 0x68 ) + 0x20 )
  return readString( addr, 6000 )
end

local addr = 0x000000001317C050
local szName = GetName( addr )
print( string.format( "Struct: 0x%X\r\nName: %s\r\n- - - -" , addr, szName ) )
And for those wanting to learn and understand to get more fun stuff:

Code: Select all

function GetFullName(input)
  -- local addr = readQword( XXXX + 0x20 )
  local firstAddr = readQword(input)
  local secondAddr = readQword(firstAddr)
  local thirdAddr = readQword(secondAddr + 0x68)
  local fourthAddr = readQword(thirdAddr + 0x20)

  print( string.format( "0: 0x%X", input ) )
  print( string.format( "1: 0x%X", firstAddr ) )
  print( string.format( "2: 0x%X", secondAddr ) )
  print( string.format( "3: 0x%X", thirdAddr ) )
  print( string.format( "4: 0x%X", fourthAddr ) )
  print( "-------------------\n" )
end
Fourth being name. I'm about to stream, so making a reversal script for x64dbg will be up to someone else for now.
Input: 0x122D9440
Name: app.HitController
Addr: 0x280C3B50
-

PATH
0: 0x122D9440
1: 0x1507BEF8
2: 0x14593CD88
3: 0x280C3AC0
4: 0x280C3B50

User avatar
SunBeam
Administration
Administration
Posts: 4765
Joined: Sun Feb 04, 2018 7:16 pm
Reputation: 4403

Re: Devil May Cry 5 (Steam) - Cheat Table

Post by SunBeam »

JustBored wrote:
Mon Mar 11, 2019 1:10 pm
Thank you for this, i mean the trainer was ok too, after beating dmd mode a lot of stuff was more experimental.is there a way that you can get the "charge" skill for neros blue rose to max?
See:


User avatar
SunBeam
Administration
Administration
Posts: 4765
Joined: Sun Feb 04, 2018 7:16 pm
Reputation: 4403

Re: Devil May Cry 5 (Steam) - Cheat Table

Post by SunBeam »

..and for those who REALLY want to know, this is how I did it ;)

Image

Who said you can't use the 'app.TrainingManager' features outside of 'The Void'? ;)

miwagre
Expert Cheater
Expert Cheater
Posts: 136
Joined: Fri Dec 08, 2017 4:46 pm
Reputation: 23

Re: Devil May Cry 5 (Steam) - Cheat Table

Post by miwagre »

SunBeam wrote:
Mon Mar 11, 2019 2:26 pm
..and for those who REALLY want to know, this is how I did it ;)

Image

Who said you can't use the 'app.TrainingManager' features outside of 'The Void'? ;)
nice! when will you be releasing the table?

KS212
Expert Cheater
Expert Cheater
Posts: 1113
Joined: Fri Mar 03, 2017 5:29 pm
Reputation: 136

Re: Devil May Cry 5 (Steam) - Cheat Table

Post by KS212 »

SunBeam wrote:
Mon Mar 11, 2019 2:26 pm

Who said you can't use the 'app.TrainingManager' features outside of 'The Void'? ;)
This is what I was hoping for. All of the 'cheats', or at least most of them are already baked into the engine as toggles if DMC4 is anything to go by.

User avatar
GlycerineQueen
Noobzor
Noobzor
Posts: 11
Joined: Wed Dec 26, 2018 9:11 am
Reputation: 0

Re: Devil May Cry 5 (Steam) - Cheat Table

Post by GlycerineQueen »

Just another request for SunBeam's table, I'd prefer to play with regenerating exceed/DT instead of infinite.Thanks in advance!

Darkprince101
Expert Cheater
Expert Cheater
Posts: 78
Joined: Fri Mar 03, 2017 12:07 pm
Reputation: 0

Re: Devil May Cry 5 (Steam) - Cheat Table

Post by Darkprince101 »

SunBeam wrote:
Mon Mar 11, 2019 1:53 pm
JustBored wrote:
Mon Mar 11, 2019 1:10 pm
Thank you for this, i mean the trainer was ok too, after beating dmd mode a lot of stuff was more experimental.is there a way that you can get the "charge" skill for neros blue rose to max?
See:

Appreciate the table but do I have to be always online and logged in to use the fearlessrevolution because up untill DMC 5 I've been using the fearlessrevolution without connecting to the internet .

User avatar
SunBeam
Administration
Administration
Posts: 4765
Joined: Sun Feb 04, 2018 7:16 pm
Reputation: 4403

Re: Devil May Cry 5 (Steam) - Cheat Table

Post by SunBeam »

^ As long as you've downloaded the trainer at least once and have it locally, no need to be connected all the time.

Darkprince101
Expert Cheater
Expert Cheater
Posts: 78
Joined: Fri Mar 03, 2017 12:07 pm
Reputation: 0

Re: Devil May Cry 5 (Steam) - Cheat Table

Post by Darkprince101 »

SunBeam wrote:
Mon Mar 11, 2019 5:19 pm
^ As long as you've downloaded the trainer at least once and have it locally, no need to be connected all the time.
I had downloaded and logged in just once since Assassins Creed Odyssey but just when I updated it today to receive DMC 5 Table options it always asks me to either log in or create a account when ever I try to play the game without connecting to the internet .

Locked

Who is online

Users browsing this forum: Bing [Bot], Darkdoodle, DotBot, Eren, FearFusion, GoneInSecondsxd, Google Adsense [Bot], Hippie, InfinityArts, LIOBOSS, liquidxearo1, neochinoko, rausrh, Sir_Devil