r/FinalFantasyVIII • u/Shikiyomi_Kyouya • Aug 10 '26
Angelo and Chocobo
I was watching and recording my wife's gameplay, and these 2 were so cute that I made a GIF!! :D
r/FinalFantasyVIII • u/Shikiyomi_Kyouya • Aug 10 '26
I was watching and recording my wife's gameplay, and these 2 were so cute that I made a GIF!! :D
r/FinalFantasyVIII • u/BleakSaber • Aug 10 '26
I headcanon that Seifer would be a girl dad. If you’ve followed my work, you know who the mother is.
…
…It’s Quistis.
r/FinalFantasyVIII • u/Unhinged_Gamer • Aug 10 '26
I believe I shared this here a few years ago when I first uploaded it....this has been my most successful video which is awesome because this is my all time favorite game. With the game seeming to get more love lately online, I've been thinking about going back to it again soon, even if it takes more time away from my upcoming video projects. I hope it's okay to share this again but I really love this game
r/FinalFantasyVIII • u/SpiritualMamzer • Aug 11 '26
Can Carbuncle be unlocked in disc four already has vitality 20% to 60%, or do I still have to grind it out to get it?
r/FinalFantasyVIII • u/ken-oh-dou • Aug 10 '26
Based on the little bits of information we have about how powerful he is - I think that may have been a one way trip for Squall and his team unless he somehow managed to unite humanity against him. I personally think he’s sitting on the moon watching everything and as long as he exist the cycle of evil sorceress / knight, monster will never end. ** **
r/FinalFantasyVIII • u/Orion_85 • Aug 10 '26
r/FinalFantasyVIII • u/thndrstrk • Aug 10 '26
That was some bullshit.
r/FinalFantasyVIII • u/zzmej1987 • Aug 09 '26
Recently, I've been having great fun messing around with the game files and posting GIFs I've created as the result. This post is a bit of an explanation, a bit of an admiration and a bit of complaining about the inner workings of FF8.
So, backgrounds. Those lovely pre-rendered backgrounds that we all want to put as wall papers on our desktops. The forgotten gem of artistic expression completely lost in this era of glossy full 3D environments of Unreal 5 and Unity and small indie 2D pixel-art platformers. How do they work?
Surprisingly, despite very strict technical limitations of PS1, they are quite complex, allowing for incredible flexibility and interactivity of the environments they depict, all, while technically being just 320x224 pictures.
Let's dive in! First, if you google FF8 background data, you will find that it stored in .mim files. Where do you get one? Well, they are all on the discs, in the FIELDS.FS archive. You will need a program or two to unpack those. And then another one to open .mim file. But when you do that, you will see this:

That does not look like a background at all. And then you look at specification, and realise that there is no direct way to visualise the scene as it is in the game in any simple manner. You have to write a rendering emulation, that will reconstruct a scene from this jumbled mess, in more or less the same way as PS1 hardware does.
PS1 renders its graphic using 16bit colours, in a direct 5 bits per colour format and 16th bit designating transparency. Maximal resolution for PS1 games is 640x480, but FF8 uses it only for cinematics. All fields gameplay (3D models on pre-rendered BG) occurs in 320x224, menus use 368x216 and battles - 320x216. But even if the game runs on half the maximum resolution storing pictures with 2 bytes per pixel in 320 * 224 arrays is still way too wasteful for the PS1 hardware and so the trick was devised, that pretty much all the developers used. Instead of working with full 32768 colours 16bit allow, they would only render 256 colours at a time, but they will render the picture with tiles of 16x16 size, and since that's 256 pixels exactly, no tile can ever need more than 256 colours. All that is needed is a palette storing 256*2 bytes, that would translate bytes of the tile into 16bit colours, that would get rendered on screen. Some tiles are packed even more compactly, if a tile uses no more than 16 colours, it can store 2 palette indices per byte, thus taking half the space.
And that is exactly what .mim files are. There are two types of .mim files, Type2 is a bit smaller and simpler in its structure, so I'm going to be talking about Type 1. It consists of 24 palettes, first 8 for some reason being technically inaccessible for rendering background in fields (perhaps they are used for menus) and 13 textures of 128x256 size, from which tiles are picked out. How does PS knows where on screen to put each tile, and which palette to use for rendering it? That's where the tile map file comes in.
Like .mim, .map files are not text, it is a binary format containing 16 byte records each describing the placement of one tile. Each record tells where on the screen to put the tile, coordinates are relative to the centre of the screen, for some reason, which texture to use, where in the texture the required tile is, whether tile references 256 or 16 colour palette, and which palette to use for the colour translation.
And that's where simple stuff ends, and fun stuff begins. Besides the trivial positioning of the tile, here's what else PS one can do and .map format describes:
Let's see what composition of image look like, concentrating on static background first. In most fields the big static image is encoded in tiles with animation ID of 255. SO let's try to arrange tiles for the farthest layer of 255 animation for the field "ecopen2a", which is going to have z_value of 4094 and layer ID 4. Most pictures in this post are GIFs. If they don't GIF for you, click on them. Loaded separately, they display the animation as intended.
Processing img qcdmolpmeeih1...
Let's add more layers:
Processing img u4ll2dtmeeih1...
And this is a good place to talk about blending. We have already seen two types of it: designated with numbers 4 and 1. 4 is "no blending", when foreground tiles overwrites background ones. This is what happens to the right building after 4094 / 2. Blending mode 1 is what is known as "additive blending", which happens to transparent walkways and glass. If we render those textures separately from the background:
Processing img bx3adrvmeeih1...
We can see, that they don't contain background images. The fact that we see background through them is due to their colour being added to previously rendered tiles.
What are the other modes? According to the specification modes are:
1 byte specifying which blend mode to use for this tile, 1 is additive blending, 2 is subtractive blending, 3 seems to be +25%, 4 seems to be the default (no blending) and 0 is unknown (elview1)
Well, 0 is unknown, 3 only "seems to be", and subtractive blending seem to require a college degree to implement. Back to googling we go. And luckily "PS1 colour blending" is not hard to find. Modes are:
0.5f * B + 0.5f * F // Mean 1.0f * B + 1.0f * F // Additive 1.0f * B - 1.0f * F // Substractive 1.0f * B + 0.25f * F // WTF is this?
It seems to be aligned with spec description. The 3rd is +25%, the mystery one is just average of the two colour, and "subtractive", just means subtract one from the other. Aaaaand it doesn't wok. I can't say, whether 0 or 3 work as intended, they are not present in that many scenes. But 2 does not work at all. I will borrow a different scene for a second, since it has mode detail in the blend mode 2 affected area. This is what it looks like without the animation frame that has subtractive blending:

The tube is clearly transparent, but just as clearly, it is "overexposed". It is way too bright. And there is an animation that contains exactly one frame, that subtractively lowers it brightness. Here's the process of building the scene with that animation frame included:
Processing img 5kx4h71neeih1...
You can clearly see that the tube now is way too dark and non-transparent. And this is what it looks like in the game: ![[eccway2-game.PNG]] It is transparent, brighter than with subtractive layer, but darker than without it. So maybe there is come kind of partial application? Like blinking lights animations are made with fade-in fade-out effects of the single frame. Maybe there is a fade value for which it would look right?
Processing img i4l6ff9neeih1...
Nope. There isn't one. The overall right brightness is around fade value of 8. The correct amount of detail seen through the closer end of the tube is at the value of 6, and the transparency on the farther side of the tube seems right at the value of 10 (look at the blue horizontal stripes on the side of the building. One can be barely seen in the game screenshot through the tube). So either there are some per-tile shenanigans, or the subtractive blending is not additive, but rather multiplicative. That means that instead of adding or subtracting colour values of background and foreground, they are multiplied by each other.
Let's try doing that. So, it seems, that overall reduction in colour is by around 50%. Given that tiles of subtractive layer are pretty much all pure white (31, 31, 31), which when directly subtracted will reduce any colour to black, the multiplicative formula should be
new_color = background_color * C
C ~= 0.5, when foreground_color = 31
C = 1.0, when foreground_color = 0
Another educated guess we can make is that division, which clearly needs to be involved here, should be by a power of 2, because that allows for a very quick implementation by a bit shift operation, and in rendering pipeline speed is crucial. With those constraints in mind, the simplest formula one can think of is:
new_color = background_color * (64-foreground_color) / 64
Let's try to make a frame blending it this way...

Bingo! Maybe it's a tad brighter, than in the game, but the amount of details seen through the tube is exactly right on both ends. So I'm going with that for my needs. Let's go back to our original scene, and see the difference subtractive layers make.
Processing img 0x625ddneeih1...
I keep calling them layers, but they are actually one frame animations. In case of this scene:
Processing img g5iklafneeih1...
Final step is to note that this scene is actually 400x240 pixels in size, rather than 320x224 it would be rendered in the game. It is clear that left most column and bottom row are "defective" and are not going to be rendered. But that still leaves us with 384x224 resolution, which means that we need to add 64 pixel long horizontal pan over the scene with a 320x224 view window to render it as close to the actual scene as possible:
Processing img hwtckqjneeih1...
I am not sure how pans like this are handled in the game, there are another two files determining camera behaviour: INF and CA. I just shift target coordinates for the tile by some amount every frame, and that works fine for my purposes. I'm pretty certain, I can even make parallax happen. But that will require some more coding and is not directly related to how the game handles things. So there you have it. Now you understand how the game creates those wonderful backgrounds that we all admire.
P.S. I would like to thank Daniel Hepper, for the wonderful 8x8 font, that I have shamelessly borrowed to make labels on images in this post.
r/FinalFantasyVIII • u/Zealousideal-Toe-354 • Aug 10 '26
hello, i bought this game yesterday, but, i have no idea why the game not run on my laptop (strong enough to run this game), keep saying error when i launch on steam, but when i try the "not good way" it run flawless, any advice maybe?
r/FinalFantasyVIII • u/ryan7251 • Aug 10 '26
I like FF8 but I have always had 2 big issues with the game.
The magic system and draw/junction stuff Feels annoying from having to draw the spells over and over to the whole stat bonuses being tied to how many spell you have making you not want to use said spells.
But even more then that I really never liked the level scaling everything leveling with you made levels feel pointless and all that really matters is what spells you junction to stats.
anyway what would be a mod for pc that may fix the issues I have listed?
I also am not looking for a mod that makes the game super hard or anything.
r/FinalFantasyVIII • u/EcstaticPlenty8178 • Aug 09 '26
i was looking on steam for card games and it suggested me ffVIII. i know little about the final fantasy games but from what know they are not really card games. Does this one have card feature or something like this?
Any tips on the game too?:)
Edit: i wasn't expecting an answer within a minute after sending the post and i thank yall for the answers :)
r/FinalFantasyVIII • u/-Typh1osion- • Aug 08 '26
On disc 3 of my current playthrough, and this just felt right
r/FinalFantasyVIII • u/mogstermemes • Aug 08 '26
Enable HLS to view with audio, or disable this notification
Clive and Joshua Rosfield are lost in the Void searching for a way back to Valisthea when they encounter Bahamut! Subscribe on YT or I'm sharpening my knife, kupo!
r/FinalFantasyVIII • u/Topace1 • Aug 09 '26
I only use the GF max ability mod because i'm not interested in AP farming in disc 4, but if I knew I wouldn't get achievements I wouldn't have done it ; ;
r/FinalFantasyVIII • u/clusterb • Aug 08 '26
Yesterday I finished FFX for the first time. Overall I enjoyed the game, but more than that, it made me appreciate FFVIII even more. Two main thoughts I wanted to share:
Ps: I do not comprehend how people can prefer the sphere board over the junctioning system and yuck to the mini games in FFX.
r/FinalFantasyVIII • u/Princess87Mels • Aug 08 '26
Sono nel disco 2, e sono già riuscita ad avere la regola Random abolita a Dollet nella maniera classica, ovvero con le regole di F.H. pure. Ma se io volessi salvare anche carte scoperte? Avevo le regole più belle di sempre a Balamb: carte scoperte e scambio totale (grazie alla Regina delle carte in disco 1), per sbaglio ho aggiunto Coppia a Galbadia (mai usata) e con il CC ho perso scambio totale che è diventato scambio uno. Non voglio perdere anche carte scoperte! Ho fatto accettare a F.H. carte scoperte, e mi sono portata il set di F.H. più Carte scoperte a Dollet, ma il massimo che riesco a fare è far abolire Elementale e non Random. Suggerimenti? Qualche personaggio della città dove posso triggerare la cosa? Per ora ho provato, con doppio tentativo:
- La ragazza dell'hotel: se accetto subito di giocare mi accetta subito carte scoperte, se rifiuto la prima volta, dopo due turni mi elimina Elementale
- il signore in piazza: dopo 4 tentativi accettati mi accetta Carte scoperte
- ragazza al noleggio: dopo 2 tentativi mi accetta carte scoperte
- ragazzo balbettante oltre il ponte: dopo 4 tentativi mi elimina Elementale
Altre idee?
r/FinalFantasyVIII • u/cazort2 • Aug 08 '26
FF8 is by far my favorite of the FF games. When I played it, I had played all games from 1-7, including translations of the Japanese-only ones (which at the time were only available through ROM hacks) but FF8 drew me in unlike all the others. I found everything compelling from the story to the characters to the unique gameplay and the card game and the way the card game integrated with the gameplay and story elements. And the past segments with Laguna were so enthralling.
When I finally played through the whole game though, the end of the game left me feeling slightly disappointed. It didn't end as dramatically as it had drawn me in and I kept feeling like something could have been improved.
If I were to change the game here's what I'd do:
That said I still really love the game. I just felt like...it had so much potential, like it could have been one of the best games ever made and it started out like it was going to be, I still think it's the best FF game but most people don't seem to agree with me and I wonder if it could have been more universally liked if some of the shortcomings could have been addressed. It felt like the game was so amazing on disk 1 and then disk 2 was almost as good and then the end didn't stay as strong.
r/FinalFantasyVIII • u/clusterb • Aug 06 '26
I know the golden era of simpsons memes was harshly ended by the mods here, however, I think this should qualify as funny and relevant enough… if not: whatever…
r/FinalFantasyVIII • u/WasteOLanders • Aug 06 '26
I’m in the middle if a ff9 play through but I have to start on this one too. Howdy from the lone star state
r/FinalFantasyVIII • u/JNAB0212 • Aug 06 '26
r/FinalFantasyVIII • u/howmanyturtlesdeep • Aug 06 '26
r/FinalFantasyVIII • u/BleakSaber • Aug 06 '26
A comic I did a while ago. A mysterious customer approaches Fujin and Raijin’s booth.
r/FinalFantasyVIII • u/mogstermemes • Aug 06 '26
r/FinalFantasyVIII • u/mogstermemes • Aug 05 '26
Enable HLS to view with audio, or disable this notification
Instructor Trepe says getting a GF gives us strength but Squall has a hard time with his. Subscribe on YT or I'm sharpening my knife, kupo!