Jump to content

The game needs more modders. Heck more traffic on the fourms


SolidLinkKog

Recommended Posts

I am a huge fan of this game as are many here. Unfortunately I am no modder. I have zero experience with the QAR tool I and I can't seem to wrap my head around it. But there are incredible people out there who do and the potential for mods is super high. MGSV is complex game, I know. I bet it takes awhile for mods to come out and that is post is probably not necessary. My dream mod is to unlock everything in the offline mode. I know that it's possible with camouflage but what about the weapons and the increased mother base staff? I would absolutely love that. Lastly I appreciate anyone who would read this, modder or no. LET THE LEGEND COME BACK TO LIFE.

Link to comment
Share on other sites

I created a mod that unlocks all of the offline stuff a while ago. :P

 

No Development Requirements

 

It technically works for the online items as well, but you need to remain offline if you want to keep them unlocked. As soon as you connect online again, your unlocked online items seem to sync with whatever's stored on Konami's server, so they'll become locked again if you didn't unlock them legitimately.

Link to comment
Share on other sites

  • 1 month later...

Ah! Thank you!

 

Edit: Uh...now I'm not sure what I'm looking for. I tried to look at the differences between the original and, say, "The Ultimate Phantom Pain Mod" but that's pretty big, and the files aren't formatted the same so darn. It's hard to tell what does what.

 

Like, in "TUPPM" it says that you can skip the logos, I'd like just that. I'm not sure how do to that, though. I searched for "logo" in the files and found:

 

if SplashScreen.GetSplashScreenWithName"konamiLogo"then
return true

end

 

in TppMission.lua, which...doesn't help much. What am I doing wrong?

 

It's all pretty confusing, but I'm willing to make the effort!

Edited by dancinninja
Link to comment
Share on other sites

Tex was going to re-implement the logo-skip in Infinite Heaven, but if you want to DIY, you can edit your init.fpkd file. Open Chunk0, navigate to \Assets\tpp\pack\mission2\init, and then unpack init.fpkd with GzsTool. Inside that, there's a lua titled "init_sequence.lua"

 

 

use ctrl+f and find the following:

if not TppSave.IsNewGame() then

TppSequence.SetNextSequence("Seq_Demo_ShowKonamiAndFoxLogo")
else

SplashScreen.Delete(SplashScreen.GetSplashScreenWithName("konamiLogo"))
SplashScreen.Delete(SplashScreen.GetSplashScreenWithName("kjpLogo"))
SplashScreen.Delete(SplashScreen.GetSplashScreenWithName("foxLogo"))
this._StartPreTitleSequence()
end

and replace it with just:

SplashScreen.Delete(SplashScreen.GetSplashScreenWithName("konamiLogo"))

SplashScreen.Delete(SplashScreen.GetSplashScreenWithName("kjpLogo"))
SplashScreen.Delete(SplashScreen.GetSplashScreenWithName("foxLogo"))
this._StartPreTitleSequence()

 

Save, repack the .fpkd and chunk0. That should do it.

Edited by morbidslinky
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...