Page 65 of 110

Re: Granblue Fantasy Relink (Steam)

Posted: Tue Feb 20, 2024 9:51 am
by yutsudark
Medicine-Seller wrote:
Tue Feb 20, 2024 8:36 am
yutsudark wrote:
Tue Feb 20, 2024 8:22 am
ioio33 wrote:
Tue Feb 20, 2024 6:59 am
my sigils, overmastery, items quantity all work, its just imbued i cant make it to save. :(
I have the same problem, I haven't modded it and I bought it through steam
Could you upload a video showcasing how you're trying to modify the imbued traits?
solved , I was recording the video but I decided to restart the PC and I no longer got an error when I checked the option to save

Re: Granblue Fantasy Relink (Steam)

Posted: Tue Feb 20, 2024 3:17 pm
by Divinitar
BloodS1GN wrote:
Sun Feb 18, 2024 7:42 am
Divinitar wrote:
Sun Feb 18, 2024 6:49 am
Guizmo wrote:
Thu Feb 08, 2024 12:11 pm

Had the issue with the same trophies up to 1 000.
I manage to get the amount into a positive value.

Hi, I just realized that I encountered the same problem. I'm able to use the Highlight Trophy Progress to set it to a positive number. However, after I acquire new animas, the trophy progress keep overflowing instead of marked as "CLEAR!" (102/100). I also tried to sell all my animas and set it back to 0 but still couldn't fix it. Have anyone encountered the same problem or have a solution?
I also have this same issue. I tried following their method of selling all of my animas, set it all to 0, and then buying them all again, the trophy didn't popped. If anyone got definitive answer to this, I would love to hear it.
I managed to fix it. You need to set the byte type to 8byte before setting the positive value using Highlighted Trophy Progress from the table.

Re: Granblue Fantasy Relink (Steam)

Posted: Tue Feb 20, 2024 3:30 pm
by Meatcleft
Transmarvel Stock Pointer: granblue_fantasy_relink.exe+5CEC568(+34)
Also a copy at granblue_fantasy_relink.exe+6772190 for whatever reason.

150 points is one transmarvel stock.

If you nop out the mov [rcx],eax opcode at granblue_fantasy_relink.exe+32EC8B, it makes transmarvel stocks cease to be consumed when used. Someone who knows how to write a script to do that please teach me how because I have the brain of a tiny baby boy and I need things spelled out for me like I'm 4 years old thank you.

Re: Granblue Fantasy Relink (Steam)

Posted: Tue Feb 20, 2024 4:51 pm
by kloze
Meatcleft wrote:
Tue Feb 20, 2024 3:30 pm
Transmarvel Stock Pointer: granblue_fantasy_relink.exe+5CEC568(+34)
Also a copy at granblue_fantasy_relink.exe+6772190 for whatever reason.

150 points is one transmarvel stock.

If you nop out the mov [rcx],eax opcode at granblue_fantasy_relink.exe+32EC8B, it makes transmarvel stocks cease to be consumed when used. Someone who knows how to write a script to do that please teach me how because I have the brain of a tiny baby boy and I need things spelled out for me like I'm 4 years old thank you.
One way is to comment out.

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>39908</ID>
      <Description>"No Change Transmarvel Stock"</Description>
      <LastState/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]

aobscanmodule(Transmarvel,granblue_fantasy_relink.exe,89 01 E8 AE 38 38 00) // should be unique
alloc(newmem,$1000,Transmarvel)

label(code)
label(return)

newmem:

code:
  //mov [rcx],eax
  call granblue_fantasy_relink.exe+6B2540
  jmp return

Transmarvel:
  jmp newmem
  nop 2
return:
registersymbol(Transmarvel)

[DISABLE]

Transmarvel:
  db 89 01 E8 AE 38 38 00

unregistersymbol(Transmarvel)
dealloc(newmem)

{
// ORIGINAL CODE - INJECTION POINT: granblue_fantasy_relink.exe+32EC8B

granblue_fantasy_relink.exe+32EC6C: 44 8B 58 24     - mov r11d,[rax+24]
granblue_fantasy_relink.exe+32EC70: 45 0F AF D9     - imul r11d,r9d
granblue_fantasy_relink.exe+32EC74: 31 C0           - xor eax,eax
granblue_fantasy_relink.exe+32EC76: 85 D2           - test edx,edx
granblue_fantasy_relink.exe+32EC78: 0F 4F C2        - cmovg eax,edx
granblue_fantasy_relink.exe+32EC7B: 41 39 C3        - cmp r11d,eax
granblue_fantasy_relink.exe+32EC7E: 41 0F 4C C3     - cmovl eax,r11d
granblue_fantasy_relink.exe+32EC82: 41 39 C0        - cmp r8d,eax
granblue_fantasy_relink.exe+32EC85: 74 0B           - je granblue_fantasy_relink.exe+32EC92
granblue_fantasy_relink.exe+32EC87: 48 83 C1 34     - add rcx,34
// ---------- INJECTING HERE ----------
granblue_fantasy_relink.exe+32EC8B: 89 01           - mov [rcx],eax
// ---------- DONE INJECTING  ----------
granblue_fantasy_relink.exe+32EC8D: E8 AE 38 38 00  - call granblue_fantasy_relink.exe+6B2540
granblue_fantasy_relink.exe+32EC92: 90              - nop 
granblue_fantasy_relink.exe+32EC93: 48 83 C4 28     - add rsp,28
granblue_fantasy_relink.exe+32EC97: 5B              - pop rbx
granblue_fantasy_relink.exe+32EC98: 5F              - pop rdi
granblue_fantasy_relink.exe+32EC99: 5E              - pop rsi
granblue_fantasy_relink.exe+32EC9A: 5D              - pop rbp
granblue_fantasy_relink.exe+32EC9B: C3              - ret 
granblue_fantasy_relink.exe+32EC9C: 0F 1F 40 00     - nop dword ptr [rax+00]
granblue_fantasy_relink.exe+32ECA0: 48 89 54 24 10  - mov [rsp+10],rdx
}
</AssemblerScript>
    </CheatEntry>
  </CheatEntries>
</CheatTable>

Re: Granblue Fantasy Relink (Steam)

Posted: Tue Feb 20, 2024 6:59 pm
by BloodS1GN
Divinitar wrote:
Tue Feb 20, 2024 3:17 pm
BloodS1GN wrote:
Sun Feb 18, 2024 7:42 am
Divinitar wrote:
Sun Feb 18, 2024 6:49 am


Hi, I just realized that I encountered the same problem. I'm able to use the Highlight Trophy Progress to set it to a positive number. However, after I acquire new animas, the trophy progress keep overflowing instead of marked as "CLEAR!" (102/100). I also tried to sell all my animas and set it back to 0 but still couldn't fix it. Have anyone encountered the same problem or have a solution?
I also have this same issue. I tried following their method of selling all of my animas, set it all to 0, and then buying them all again, the trophy didn't popped. If anyone got definitive answer to this, I would love to hear it.
I managed to fix it. You need to set the byte type to 8byte before setting the positive value using Highlighted Trophy Progress from the table.
You just solved my issue, I knew it had to do with the bytes considering it always stuck to 255.

Re: Granblue Fantasy Relink (Steam)

Posted: Tue Feb 20, 2024 9:10 pm
by zeratitito
Is it only for me that the overmastery editor only edits the value visually and not actually the stat increase on the character? Critchance does not move on the character stats

Re: Granblue Fantasy Relink (Steam)

Posted: Tue Feb 20, 2024 10:10 pm
by simon93
zeratitito wrote:
Tue Feb 20, 2024 9:10 pm
Is it only for me that the overmastery editor only edits the value visually and not actually the stat increase on the character? Critchance does not move on the character stats
It does. You have to save the game after the edit and reload the save after leaving, and it will display the correct value on the stats menu.

Re: Granblue Fantasy Relink (Steam)

Posted: Tue Feb 20, 2024 11:06 pm
by Stakerpro
Medicine-Seller wrote:
Sun Feb 18, 2024 8:39 am
Made a table for those who are having trouble editing their weapon/sigil/masteries. Things that are colored in green are persistent, but you must make sure to check the "Mark For Save" script before or after editing them.
Does that mean that if i edit mastery % value it will only be visual? i edited mine and the value persisted after reloading but i guess its only visual then?

Re: Granblue Fantasy Relink (Steam)

Posted: Tue Feb 20, 2024 11:07 pm
by jonaaa
Stakerpro wrote:
Tue Feb 20, 2024 11:06 pm
Medicine-Seller wrote:
Sun Feb 18, 2024 8:39 am
Made a table for those who are having trouble editing their weapon/sigil/masteries. Things that are colored in green are persistent, but you must make sure to check the "Mark For Save" script before or after editing them.
Does that mean that if i edit mastery % value it will only be visual? i edited mine and the value persisted after reloading but i guess its only visual then?
You must edit the STARS, not the values.

Re: Granblue Fantasy Relink (Steam)

Posted: Tue Feb 20, 2024 11:24 pm
by Stakerpro
jonaaa wrote:
Tue Feb 20, 2024 11:07 pm
Stakerpro wrote:
Tue Feb 20, 2024 11:06 pm
Medicine-Seller wrote:
Sun Feb 18, 2024 8:39 am
Made a table for those who are having trouble editing their weapon/sigil/masteries. Things that are colored in green are persistent, but you must make sure to check the "Mark For Save" script before or after editing them.
Does that mean that if i edit mastery % value it will only be visual? i edited mine and the value persisted after reloading but i guess its only visual then?
You must edit the STARS, not the values.
Does editing the stars automatically update the values? i can't test it right now, just trying to understand how exactly this works
Just to clarify, i did in fact edit the stars respective to the value edited

Re: Granblue Fantasy Relink (Steam)

Posted: Tue Feb 20, 2024 11:32 pm
by jonaaa
Stakerpro wrote:
Tue Feb 20, 2024 11:24 pm
jonaaa wrote:
Tue Feb 20, 2024 11:07 pm
Stakerpro wrote:
Tue Feb 20, 2024 11:06 pm


Does that mean that if i edit mastery % value it will only be visual? i edited mine and the value persisted after reloading but i guess its only visual then?
You must edit the STARS, not the values.
Does editing the stars automatically update the values? i can't test it right now, just trying to understand how exactly this works
Just to clarify, i did in fact edit the stars respective to the value edited
Changing the stars to FFFF (which is the max "not legit" value) or 00 02 (max legit value) will change the values properly and it will persist after a save.

Re: Granblue Fantasy Relink (Steam)

Posted: Tue Feb 20, 2024 11:38 pm
by sunikkaazu23
Is anyone able to post a full sigil ID list? My friend's save got corrupted and I want to give him back some of the Sigils he had, nothing extreme, like Combo Booster V and Drain V. All the posted lists are deleted links.

Re: Granblue Fantasy Relink (Steam)

Posted: Tue Feb 20, 2024 11:45 pm
by jonaaa
sunikkaazu23 wrote:
Tue Feb 20, 2024 11:38 pm
Is anyone able to post a full sigil ID list? My friend's save got corrupted and I want to give him back some of the Sigils he had, nothing extreme, like Combo Booster V and Drain V. All the posted lists are deleted links.
Check the OP. [Link].

Re: Granblue Fantasy Relink (Steam)

Posted: Tue Feb 20, 2024 11:50 pm
by sunikkaazu23
jonaaa wrote:
Tue Feb 20, 2024 11:45 pm
sunikkaazu23 wrote:
Tue Feb 20, 2024 11:38 pm
Is anyone able to post a full sigil ID list? My friend's save got corrupted and I want to give him back some of the Sigils he had, nothing extreme, like Combo Booster V and Drain V. All the posted lists are deleted links.
Check the OP. [Link].
Sorry, I somehow missed that. Thank you very much!

Re: Granblue Fantasy Relink (Steam)

Posted: Wed Feb 21, 2024 12:09 am
by sunikkaazu23
sunikkaazu23 wrote:
Tue Feb 20, 2024 11:50 pm
jonaaa wrote:
Tue Feb 20, 2024 11:45 pm
sunikkaazu23 wrote:
Tue Feb 20, 2024 11:38 pm
Is anyone able to post a full sigil ID list? My friend's save got corrupted and I want to give him back some of the Sigils he had, nothing extreme, like Combo Booster V and Drain V. All the posted lists are deleted links.
Check the OP. [Link].
Sorry, I somehow missed that. Thank you very much!
Looks like none of the lists have the regular Combo Booster V unfortunately, only Combo Booster V+. Is anyone in possession of a Combo Booster V able to tell me the Sigil ID for one?