Page 8 of 9

Re: Disgaea 6 Complete

Posted: Mon Jul 18, 2022 2:38 am
by Bizonchik
I haven't been able to find an address for the bonus gauge. Is there a way to make it always be 9?

Re: Disgaea 6 Complete

Posted: Tue Jul 19, 2022 12:20 pm
by mordaki987
i'm having an issue with the dupe item thing. i'm trying to copy one item to an item i don't need yet the the whole convert item thing vlivked it creates likw 3 or 4 of the item i'm trying to copy and equips it to all slors ami doing something wrong? i mean i want 1 not 14 or 15 of the same item

Re: Disgaea 6 Complete

Posted: Wed Jul 20, 2022 3:26 am
by azzureknight
Just made this rough bonus gauge script for disgaea 6 build 0.
Spoiler
<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
<CheatEntries>
<CheatEntry>
<ID>15221</ID>
<Description>"lv 9 bonus gauge"</Description>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>{ Game : Disgaea6.exe
Version:
Date : 2022-07-20
Author : azzie

This script does blah blah blah
}

[ENABLE]

aobscanmodule(INJECT,Disgaea6.exe,89 57 08 C6 86 D8 0E 00 00 01) // should be unique
alloc(newmem,$1000,INJECT)

label(code)
label(return)

newmem:

code:
mov [rdi+08],#900
mov byte ptr [rsi+00000ED8],01
jmp return

INJECT:
jmp newmem
nop 5
return:
registersymbol(INJECT)

[DISABLE]

INJECT:
db 89 57 08 C6 86 D8 0E 00 00 01

unregistersymbol(INJECT)
dealloc(newmem)

{
// ORIGINAL CODE - INJECTION POINT: Disgaea6.exe.text+49C872

Disgaea6.exe.text+49C855: 48 8B 17 - mov rdx,[rdi]
Disgaea6.exe.text+49C858: 48 8B CF - mov rcx,rdi
Disgaea6.exe.text+49C85B: 8B D8 - mov ebx,eax
Disgaea6.exe.text+49C85D: FF 52 08 - call qword ptr [rdx+08]
Disgaea6.exe.text+49C860: 8B 57 08 - mov edx,[rdi+08]
Disgaea6.exe.text+49C863: 3B DA - cmp ebx,edx
Disgaea6.exe.text+49C865: 0F 4C D3 - cmovl edx,ebx
Disgaea6.exe.text+49C868: 48 8B 5C 24 30 - mov rbx,[rsp+30]
Disgaea6.exe.text+49C86D: 3B C2 - cmp eax,edx
Disgaea6.exe.text+49C86F: 0F 4F D0 - cmovg edx,eax
// ---------- INJECTING HERE ----------
Disgaea6.exe.text+49C872: 89 57 08 - mov [rdi+08],edx
// ---------- DONE INJECTING ----------
Disgaea6.exe.text+49C875: C6 86 D8 0E 00 00 01 - mov byte ptr [rsi+00000ED8],01
Disgaea6.exe.text+49C87C: 48 8B 74 24 38 - mov rsi,[rsp+38]
Disgaea6.exe.text+49C881: 48 83 C4 20 - add rsp,20
Disgaea6.exe.text+49C885: 5F - pop rdi
Disgaea6.exe.text+49C886: C3 - ret
Disgaea6.exe.text+49C887: CC - int 3
Disgaea6.exe.text+49C888: CC - int 3
Disgaea6.exe.text+49C889: CC - int 3
Disgaea6.exe.text+49C88A: CC - int 3
Disgaea6.exe.text+49C88B: CC - int 3
}
</AssemblerScript>
</CheatEntry>
<CheatEntry>
<ID>15220</ID>
<Description>"fast bonus gauge "</Description>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>{ Game : Disgaea6.exe
Version:
Date : 2022-07-20
Author : azzie

This script does blah blah blah
}

[ENABLE]

aobscanmodule(INJECT,Disgaea6.exe,F1 48 8B 07 48 8B CF 01 57 08 FF 50 10) // should be unique
alloc(newmem,$1000,INJECT)

label(code)
label(return)

newmem:

code:
add [rdi+08],#100
call qword ptr [rax+10]
jmp return

INJECT+07:
jmp newmem
nop
return:
registersymbol(INJECT)

[DISABLE]

INJECT+07:
db 01 57 08 FF 50 10

unregistersymbol(INJECT)
dealloc(newmem)

{
// ORIGINAL CODE - INJECTION POINT: Disgaea6.exe.text+49C84F

Disgaea6.exe.text+49C82E: CC - int 3
Disgaea6.exe.text+49C82F: CC - int 3
Disgaea6.exe.text+49C830: 48 89 5C 24 08 - mov [rsp+08],rbx
Disgaea6.exe.text+49C835: 48 89 74 24 10 - mov [rsp+10],rsi
Disgaea6.exe.text+49C83A: 57 - push rdi
Disgaea6.exe.text+49C83B: 48 83 EC 20 - sub rsp,20
Disgaea6.exe.text+49C83F: 48 8D B9 68 0A 00 00 - lea rdi,[rcx+00000A68]
Disgaea6.exe.text+49C846: 48 8B F1 - mov rsi,rcx
Disgaea6.exe.text+49C849: 48 8B 07 - mov rax,[rdi]
Disgaea6.exe.text+49C84C: 48 8B CF - mov rcx,rdi
// ---------- INJECTING HERE ----------
Disgaea6.exe.text+49C84F: 01 57 08 - add [rdi+08],edx
// ---------- DONE INJECTING ----------
Disgaea6.exe.text+49C852: FF 50 10 - call qword ptr [rax+10]
Disgaea6.exe.text+49C855: 48 8B 17 - mov rdx,[rdi]
Disgaea6.exe.text+49C858: 48 8B CF - mov rcx,rdi
Disgaea6.exe.text+49C85B: 8B D8 - mov ebx,eax
Disgaea6.exe.text+49C85D: FF 52 08 - call qword ptr [rdx+08]
Disgaea6.exe.text+49C860: 8B 57 08 - mov edx,[rdi+08]
Disgaea6.exe.text+49C863: 3B DA - cmp ebx,edx
Disgaea6.exe.text+49C865: 0F 4C D3 - cmovl edx,ebx
Disgaea6.exe.text+49C868: 48 8B 5C 24 30 - mov rbx,[rsp+30]
Disgaea6.exe.text+49C86D: 3B C2 - cmp eax,edx
}
</AssemblerScript>
</CheatEntry>
</CheatEntries>
</CheatTable>

Re: Disgaea 6 Complete

Posted: Thu Jul 21, 2022 8:37 am
by mordaki987
all i did was merge the bonus gauge scpts and the unlimited hp and unlimied sp from ColonelRVH disgaea 6 complete tables for those having crash to desktop issues with unlimited hp or sp scripts enjoy

Re: Disgaea 6 Complete

Posted: Thu Jul 21, 2022 11:22 am
by The Black X

Re: Disgaea 6 Complete

Posted: Fri Jul 22, 2022 3:06 pm
by mordaki987
seriously guys and gals how do i change the inherited unique evilities on a character the unique evilities in the highlighted yellow text? examplebeing i'm changing a warrior starting fighter charcter into bieko her unique evilities don't auto switch to the right character or class. right now bieko is stuck with wild cry and so far i hve not found a way to change switch or remove or even unequip the uniques that are hilighted in the yellow text there has yo be a way

Re: Disgaea 6 Complete

Posted: Fri Jul 22, 2022 6:08 pm
by mordaki987
this is not something made by me and i take no credit for it. i trust trainers made by fearlessrevolution hope it helps some of youdamn post says fearless revolution go fig

Re: Disgaea 6 Complete

Posted: Fri Jul 22, 2022 9:42 pm
by mordaki987
secret scrolls for spells like heal fire espoir and the like in the item dropdowns? i'm only finding regular secret scrolls basically spell scrolls used to lean all or most of the spells in game. fire ice wind heak espoir ect. they are given as bonus gauge rewards i think.

Re: Disgaea 6 Complete

Posted: Sat Jul 23, 2022 2:51 am
by Foomy
So uh, is it going to be possible to get unique innocent ID editor?

Re: Disgaea 6 Complete

Posted: Sat Jul 23, 2022 3:12 am
by TwilightStarocean
so uh, is it going to be possible to get a class unlocker

Re: Disgaea 6 Complete

Posted: Sat Jul 23, 2022 1:32 pm
by mordaki987
question on ivars level cap ? can it not get to 9999? it seems to cut off stop at like 9845yeah i don't know if anyones noticed or watched but for charcters like ivar or larharl trying to max their exp doesn't work it caps off at level 9485 i don't know of a fix for it

Re: Disgaea 6 Complete

Posted: Sat Jul 23, 2022 9:35 pm
by mordaki987
can someone may sear or try and find the game flag unlock points for limit break 1 and 2 amd add them into the table for easier early on unlocking of level cap?i don't know really i just have this feeling that wherer there is a will there is a way to mod unlock or cheat in the content this game has

Re: Disgaea 6 Complete

Posted: Sun Jul 24, 2022 6:30 pm
by germister
Is it possible to add a method for mass unlocking items? I'm not even worried about being able to select certain items, just unlocking everything in inventory would be great. And yes, you guessed it. Baal Swords.

Re: Disgaea 6 Complete

Posted: Sun Jul 24, 2022 9:52 pm
by The Black X
germister wrote:
Sun Jul 24, 2022 6:30 pm
Is it possible to add a method for mass unlocking items? I'm not even worried about being able to select certain items, just unlocking everything in inventory would be great. And yes, you guessed it. Baal Swords.
Highlighted item has already locked/unlocked opition. Set it to whatever you prefer (unlocked), freeze the value, hover over all items you want unlock. Much faster than unlocking normally in game, but not instant.
Also there's an option in game's settings to not auto-lock valuable items when obtaining them.
Although i don't really see the reason why one would farm baal swords when you can get max item points or edit weapon stats directly and dupe weapons.

Re: Disgaea 6 Complete

Posted: Sun Jul 24, 2022 11:29 pm
by germister
Highlighted item has already locked/unlocked opition. Set it to whatever you prefer (unlocked), freeze the value, hover over all items you want unlock. Much faster than unlocking normally in game, but not instant.
Also there's an option in game's settings to not auto-lock valuable items when obtaining them.
Although i don't really see the reason why one would farm baal swords when you can get max item points or edit weapon stats directly and dupe weapons.
Looks like I had an older version of the table without the State field, but I'm glad I asked anyway. I didn't realize freezing the value and scrolling through would work, so I still would have been doing it the hard way. Thanks for the help!

As for farming, I was going for XP and forgot I'd be getting that sword each time. I'm trying to go through a normal playthrough before using actual cheats. I was really just looking for a way to clean up my mess, but I'll be taking full advantage of the cheats in a day or two for sure.