Users browsing this thread: 1 Guest(s)
Replacing Gogo with Daryl

#1
Posts: 89
Threads: 23
Thanks Received: 0
Thanks Given: 15
Joined: Jan 2014
Reputation: 0
Status
None
I'm preparing to start my first real hack, and just want to make sure I'm going about things the right way. If I wanted to replace Gogo with Daryl (as in: change sprite entirely, add small dialogue beforehand, and make her special ability JUMP), what steps would I take?

As I understand it, I'd need to:
   replace Gogo with Daryl in a Sprite Editor,
   rewrite the dialogue with Gogo into a longer script,
   and make Jump a permanent skill rather than a replacement for attack.

If possible, I'd love to make Jump her only way to attack as well as giving her a secondary skill, but that seems like extra complication for something while I'm already on shaky ground.
  Find
Quote  

#2
Posts: 471
Threads: 39
Thanks Received: 6
Thanks Given: 6
Joined: Aug 2010
Reputation: 3
Status
Runic
Pretty simple really, just change Gogo's sprite to Daryl's, there should be a Daryl sprite somewhere. Then you change the dialogue in FF3USME and then give her the ability Jump instead of Mimic. That is pretty much it.
  Find
Quote  
[-] The following 1 user says Thank You to CrumpledMedal for this post:
  • Jeff (06-09-2019)

#3
Posts: 377
Threads: 34
Thanks Received: 10
Thanks Given: 7
Joined: Dec 2018
Reputation: 18
Status
Moog
Yeah, you can use FF3USME to change action commands, and you can actually give them any four you like. Gogo is the safest to play with this, because the magic menu is explicitly set not to allow the equipping of an Esper. Without hex edits, giving Blitz, Swordtech, Lore, or Dance won't alter who is required to learn those abilities.

Neither Gogo nor Umaro have their own magic list (unless you're using the MMMMMagic patch). Thus, if either of them is allowed to learn any percentage of a spell, it will dangerously overwrite other data in the RAM. Gogo is the easier of the two to prevent this, as the game is already set up to prevent the equipping of an Esper.

There are a few other things you'll need to do, though. You'll have to prevent the selection of commands from Gogo's status menu, or limit the number of commands available to choose (which can be done by checking off the "Can be used by Gogo" box on various commands in FF3USME's battle editor. Note blocking too many commands will cause graphical ick in the status menu).

I personally turned off all of Gogo's special menu calls with this Hex change.
Code:
C3/225E:    C90C    ====>    C9EA       CMP #$0C    ====>    CMP #$EA       (Gogo changed to actor 234, who is hopefully never called)
But I can't speak to what other effects that might have had, as I gave Gogo's special magic properties to Umaro through other hex edits.

One other thing to keep in mind... if you don't do any event edits, your Daryl will only have two lines, which will be the same regardless of who speaks with her: one upon recruitment and one on the Falcon. EDIT: Oh, and unless you do some creative repointing and hex edits, the ending will still say "Gogo". There's a tutorial on the wiki to change ending names, but it doesn't go into extending short names, so Gogo only has four letters to work with.
  Find
Quote  
[-] The following 1 user says Thank You to C-Dude for this post:
  • Jeff (06-09-2019)

#4
Posts: 89
Threads: 23
Thanks Received: 0
Thanks Given: 15
Joined: Jan 2014
Reputation: 0
Status
None
(06-08-2019, 07:36 PM)CrumpledMedal Wrote: Pretty simple really, just change Gogo's sprite to Daryl's, there should be a Daryl sprite somewhere. Then you change the dialogue in FF3USME and then give her the ability Jump instead of Mimic. That is pretty much it.

I've just imported a sprite to do that, but the palette is different and makes Strago and Relm look way off colored. How is that worked around?
  Find
Quote  

#5
Posts: 2,549
Threads: 98
Thanks Received: 147
Thanks Given: 158
Joined: Aug 2009
Reputation: 52
Status
Nattak\'d
Palettes are shared between characters (0-7) so you will need to recolor them unfortunately, one of the many limitations!


We are born, live, die and then do the same thing over again.
Quote  

#6
Posts: 89
Threads: 23
Thanks Received: 0
Thanks Given: 15
Joined: Jan 2014
Reputation: 0
Status
None
(06-09-2019, 07:03 PM)Gi Nattak Wrote: Palettes are shared between characters (0-7) so you will need to recolor them unfortunately, one of the many limitations!

Are all 0-7 palettes used for more than one character each? I'm just trying to think of how best I can implement her.
  Find
Quote  

#7
Posts: 3,969
Threads: 279
Thanks Received: 236
Thanks Given: 57
Joined: Oct 2011
Reputation: 65
Status
Tissue-aware
(06-09-2019, 07:13 PM)Jeff Wrote: Are all 0-7 palettes used for more than one character each? I'm just trying to think of how best I can implement her.

Yes, you have the palette assignations here: https://www.ff6hacking.com/wiki/doku.php...g_palettes
  Find
Quote  
[-] The following 1 user says Thank You to madsiur for this post:
  • Jeff (06-09-2019)

#8
Posts: 89
Threads: 23
Thanks Received: 0
Thanks Given: 15
Joined: Jan 2014
Reputation: 0
Status
None
(06-09-2019, 08:43 PM)madsiur Wrote:
(06-09-2019, 07:13 PM)Jeff Wrote: Are all 0-7 palettes used for more than one character each? I'm just trying to think of how best I can implement her.

Yes, you have the palette assignations here: https://www.ff6hacking.com/wiki/doku.php...g_palettes

Thanks for that, it adds to my understanding a little bit. Is there no way to replace the sprite then? I could edit Daryl into Gogo's colors if all else fails?
  Find
Quote  

#9
Posts: 377
Threads: 34
Thanks Received: 10
Thanks Given: 7
Joined: Dec 2018
Reputation: 18
Status
Moog
Okay, first you'll want to make sure your spritesheet for Daryl has a properly sorted palette.  There are programs explicitly designed for handling paletted graphics like this... I can't help you there.  The program I use is 22 years old, so palettes are part of its core function (something more modern graphics programs phased out).
The file you import is actually instructions on what pixel to set to which color index.  The game then sets it to the palette in question.

Next, you'll want to change Gogo's battle palette to 02.  This is the one Terra and Daryl use in-game, along with some generic non-playable characters.  If you import a Daryl sheet and change to this palette, she should look fine (without importing the palette itself).

Now's the tricky part... you can change the battle palette in FF3USME, but changing map palettes is a different story.  The Gogo NPC in the X-Zone has its palette set by an event... this was documented by somebody called RuneLancer.

Code:
Gogo
CB:81E0 0x0C    <Sprite>
....
CB:81E3 0x03    <Palette> <You'll want to change this to 02>

However...  there's another event call for Gogo's palette, in the Kefka battle room.  RuneLancer did not document this palette's location in the Hex, and I'm not sure where it is.  It only seems to come up if Gogo is recruited but not in your teams during the final fight; the two characters who run in from the Airship as you flee seem to use the default palette.

It'd certainly be easier to stick with Gogo's palette, though.
Attached to this post is Pocoloco's Daryl spritesheet, in the Gogo palette (I got it from the 2017 sprite collection, sorted the palette for import, and then exported the result).  She looks pretty good in Gogo's palette, actually.
   

Know that the game sprites are much more finicky than the portraits.  When you get around to a portrait, you can just grab it and the palette in FF3SE (the portrait and monster gfx editor) and it'll work fine.
  Find
Quote  
[-] The following 1 user says Thank You to C-Dude for this post:
  • Jeff (06-09-2019)

#10
Posts: 89
Threads: 23
Thanks Received: 0
Thanks Given: 15
Joined: Jan 2014
Reputation: 0
Status
None
I've just about got everything sprite wise, but I'm failing to make it load the palette in the right order. I'm using FF3usME, if you could guide me in the proper direction.


Attached Files Thumbnail(s)
   
  Find
Quote  



Forum Jump:

Users browsing this thread: 1 Guest(s)


Theme by Madsiur2017Custom Graphics by JamesWhite