Final Fantasy 8 Translating

  • Thread starter Thread starter YarYar
  • Start date Start date
Status
Not open for further replies.
Oh,what's the meaning of DTE?
and this is a list you want:(made by myself :D )
00=\n\n
01=<control>
02=\n
03=<name>
04=<control>
05=<control>
06=<color>
07=<control>
08=<control>
09=<delay>
0a=<control>
0b=<control>
0c=<control>
0d=<control>
0e=<term>
0f=<control>
10=<control>
11=<control>
12=<control>
13=<control>
14=<control>
15=<control>
16=<control>
17=<control>
18=<control>
19=<control>
1a=<control>
1b=<control>
1c=<control>
1d=<control>
1e=<control>
1f=<control>
20= (space)
21=0
22=1
23=2
24=3
25=4
26=5
27=6
28=7
29=8
2a=9
2b=%
2c=/
2d=:
2e=!
2f=?
30=…
31=+
32=-
33==
34=*
35=&
36=「
37=」
38=(
39=)
3a=·
3b=.
3c=,
3d=~
3e="(right)
3f="(left)
40='
41=#
42=$
43='
44=_
45=A
46=B
47=C
48=D
49=E
4a=F
4b=G
4c=H
4d=I
4e=J
4f=K
50=L
51=M
52=N
53=O
54=P
55=Q
56=R
57=S
58=T
59=U
5a=V
5b=W
5c=X
5d=Y
5e=Z
5f=a
60=b
61=c
62=d
63=e
64=f
65=g
66=h
67=i
68=j
69=k
6a=l
6b=m
6c=n
6d=o
6e=p
6f=q
70=r
71=s
72=t
73=u
74=v
75=w
76=x
77=y
78=z
79=<unknown>
7a=<unknown>
7b=<unknown>
7c=<unknown>
7d=<unknown>
7e=<unknown>
7f=<unknown>
80=<unknown>
81=<unknown>
82=<unknown>
83=<unknown>
84=<unknown>
85=<unknown>
86=<unknown>
87=<unknown>
88=<unknown>
89=<unknown>
8a=<unknown>
8b=<unknown>
8c=<unknown>
8d=<unknown>
8e=<unknown>
8f=<unknown>
90=<unknown>
91=<unknown>
92=<unknown>
93=<unknown>
94=<unknown>
95=<unknown>
96=<unknown>
97=<unknown>
98=<unknown>
99=<unknown>
9a=<unknown>
9b=<unknown>
9c=<unknown>
9d=<unknown>
9e=<unknown>
9f=<unknown>
a0=<unknown>
a1=<unknown>
a2=<unknown>
a3=<unknown>
a4=<unknown>
a5=<unknown>
a6=<unknown>
a7=<unknown>
a8=<unknown>
a9=[
aa=]
ab=â– 
ac=⊙
ad=â—†
ae=【
af=】
b0=â–¡
b1=★
b2=『
b3=』
b4=<unknown>
b5=;
b6=<unknown>
b7=ˉ
b8=×
b9=☆
ba='
bb=↓
bc=<unknown>
bd=<unknown>
be=<unknown>
bf=—
c0=《
c1=》
c2=±
c3=<unknown>
c4=<unknown>
c5=↑
c6=â…¥
c7=â…¡
c8=<unknown>
c9=<unknown>
ca=<
cb=>
 
#PROFESSOR MODE ON#

D.T.E. = Double Tile Encoding
M.T.E. = Multiple Tile Encoding

Those 2 technics are used to save space especially on roms. In the first case normaly 2 chars are on the same tile. For example small ones like a double l. In the second case you have a string (a word or a phrase). In both case you print them on the screen just by using one hex.

Examples.

DTE:
A1=on
in this case the word Summon it's composed by 5 hex instead of 6

A1=mmon
in this case the word Summon is composed by 3 hex instead of 6 or you can even have that the whole word is A1.

In both cases you have somewhere in the game (normaly in the EXE) the full table of the DTEs/MTEs that you can modify. Normaly they both uses standard pointers.

#PROFESSOR MODE OFF#

I hope it's clear  :D

Looking at the dump... seems that DTE are used. Try to find the missing parts in the EXE. Like on (of Summon), ar (of Guardian) and ag (of magic). Using the table you posted of course  :wink:
 
Yes, it also has another table like this one: :D

3003=Squall
3103=Zell
3203=Irvine
3303=Quistis
3403=Rinoa
3503=Selphie
3603=Seifer
3703=Edea
3803=Laguna
3903=Kiros
3a03=Ward
3c03=Griever
3d03=Mog
3e03=Chocobo
3f03=Angelo
2006=Disabled
2106=Dark
2206=Yellow
2306=Red
2406=Green
2506=Blue
2606=Purple
2706=White (standard)
2806=Disabled (flashing)
2906=Dark (flashing)
2a06=Yellow (flashing)
2b06=Red (flashing)
2c06=Green (flashing)
2d06=Blue (flashing)
2e06=Purple (flashing)
2f06=White (flashing)
200e=Galbadia
210e=Esthar
220e=Balamb
230e=Dollet
240e=Timber
250e=Trabia
260e=Centra
270e=Fishermans Horizon
280e=East Academy
290e=Desert Prison
2a0e=Trabia Garden
2b0e=Lunar Base
2c0e=Shumi Village
2d0e=Deling City
2e0e=Balamb Garden
2f0e=East Academy Station
300e=Dollet Station
310e=Desert Prison Station
320e=Lunar Gate
330e=Restores
340e=status
350e=learns
360e=ability
370e=Magic
380e=Refine
390e=Junctions
3a0e=Raises
3b0e=command
3c0e=Magazine
3d0e=Ultimecia Castle
3e0e=Garden
3f0e=Deling
 
that's almost what i was talking about. There they are using 2 hex. Normaly whan 2 hex are used the game refears to a special "action". In this case the names of the chars- Search for the others you need, normaly they are 1 hex.
 
I'm back!  :D

M4V3R: Annother request. Do you remember when I asked you to make english translations of the FF7 programs what I founded you site. I really need to it because I finished the FF8 (I skipped the menus, but another peoples want to make it. I'll help them). So, if you have a little free time please make the translations. Thx!

And very big thanks for the help in the FF8. Without you, It was hopeless. You are my friendest friend  :wink:
 
Still, Sapphire has some bugs. Meaning... some locations isn't very translation-friendly. This goes to parts of Shinra HQ (there are some pointers that point some garbage) and some others. Still, many (near all) locations can be translated.
 
I'm going to translate this game to brazillian portuguese using M4v3r tools! Hope it works for me too!
 
Holy Necromancy batman! This needs to be locked!

Don't bring up very dead issues. The last post was from two and a half years ago!
 
Status
Not open for further replies.
Back
Top