| CODE |
| Function analysfile(FilePath As String) As Boolean Dim data As Byte Dim i As Variant Dim firstval As String Dim lastval As String Dim CorrectStr As String firstval = 2548 lastval = 2578 i = firstval Text3 = "" Open FilePath For Binary As #1 Do Get #1, i, data Text3 = Text3 & Chr$(data) i = i + 1 Loop Until i = lastval + 2 Close #1 If Text3 = "c:\halo\objects\final\final.exe" Then 'NTSC Version analysfile = True Me.Caption = "Halo XBE Hacker - NTSC" ElseIf InStr(Text3, "palfinal") > 0 Then 'PAL Version analysfile = True Me.Caption = "Halo XBE Hacker - PAL" Else MsgBox "This is not the Halo XBE", vbCritical, "File Mismatch" analysfile = False End If End Function |
| QUOTE |
| Are you sure these messages only come up on your screen when playing online? I changed my xbe so that some of the default names are different, and when playing online, if I hosted, the other person could pick my specially created default names, while if the other person who didn't have the hacked xbe hosted, then the default names were the same as before (Prancer, THe Big L, etc.). So maybe if you are hosting a game with a hacked xbe like this, the other person would see your hacked messages even if they had a normal xbe. Anyone know for sure? |