What's new

[VB] Halo 3 Binary Reader

  • Thread starter sgt frankieboy
  • Start date
  • Views 378
sgt frankieboy

sgt frankieboy

Enthusiast
Messages
722
Reaction score
140
Points
125
Sin$
7
Halo 3 Binary Reader

I'm making a usermap modder and I now the offsets from the title, description and author but I don't know witch encoding I need to use I tried
Unicode, ASCII and BigEndianUnicode, UTF32, UTF7 and UTF8
But Non of the 5 showed the text correct:.(

could one of you guys help me out witch Encoding Type I need to use?

And how to see witch map it is Like Foundry , High Ground, Sandbox, enz.

you will be in the about box of it:thumbup:
and maby even more:rolleyes:
 
Kenpachi

Kenpachi

Enthusiast
Messages
411
Reaction score
42
Points
85
Sin$
7
Re: Halo 3 Binary Reader

try
Code:
Imports System.IO

Dim br as new BinaryReader
br.basestream.position = "hex line"
textbox1.text = br.read
br.basestream.position += 1
tried to remember that off the top of my head. Goldbl4d3 helped me with that
hope this helps if it did... its just a click away ;D
 
sgt frankieboy

sgt frankieboy

Enthusiast
Messages
722
Reaction score
140
Points
125
Sin$
7
Re: Halo 3 Binary Reader

If use this I will get the number 67 for some reason
The offset is &H150 (Title)
other wise I will get it in chinese<_<
 
S

SSM

Enthusiast
Messages
451
Reaction score
129
Points
125
Sin$
0
Re: Halo 3 Binary Reader

It's not the encoding your using, your still having a problem with offsets.
 
sgt frankieboy

sgt frankieboy

Enthusiast
Messages
722
Reaction score
140
Points
125
Sin$
7
Re: Halo 3 Binary Reader

SSM said:
It's not the encoding your using, your still having a problem with offsets.

What Problem:?

Here are the offsets
Code:
0000E060 - Description
0000E170 - Description
0000E040 - Title
0000E150 - Title
0000E0E0 - Author
0000E1F0 - Author

I found them In HxD
Using 3 different maps
 
Top Bottom
Login
Register