Guest User

Untitled

a guest
Dec 13th, 2022
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. DIG File Format:
  2.  
  3. DIG file seems to be a directory tree or something. It contains a massive list of
  4.  
  5. Read 'DIGFile' continuously until you reach 0x8800,
  6. or find a file with 0x00 for both offset and size.
  7.  
  8. struct DIGFile {
  9. uint32 offset; //Multiply by 0x800 to get the actual offset
  10. uint32 size; //Multiply by 0x800 to get the actual size
  11. uint32 unknown0x0c; //Maybe subfile count?
  12. }
  13.  
  14. A text file containing the string 'BAR LUNA LIGHT' is located at 0x30340800 in the dig
  15.  
  16. File Info:
  17. 0x3034b7fe 'LUNA LIGHT' String Position in PACKDATA.DIG
  18. 0x........
  19.  
  20. Files using DIGDumper File Names:
  21. 808716288.wtf Text File
  22.  
  23. Program Info (Cheat Engine):
  24. 0x21127EA0 ? Leader Character Creation, Selected Character
  25. 0x21127E94 SHORT Leader Character Creation, Length of Name
  26. 0x21127E84 SHORT[8] Leader Character Creation, Name
  27.  
  28. Character Set:
  29. Special Characters:
  30. 00 00 = Space
  31. FF FF = \0
  32. FF FE = ??? End of line ???
  33.  
  34. Latin Alphabet: (This is regular ASCII, with a difference of - 32 to the character ID)
  35. 21 00 = a
  36. 22 00 = b
  37. 23 00 = c
  38. 24 00 = d
  39. 25 00 = e
  40. 26 00 = f
  41. 27 00 = g
  42. 28 00 = h
  43. 29 00 = i
  44. 2A 00 = j
  45. 2B 00 = k
  46. 2C 00 = l
  47. 2D 00 = m
  48. 2E 00 = n
  49. 2F 00 = o
  50. 30 00 = p
  51. 31 00 = q
  52. 32 00 = r
  53. 33 00 = s
  54. 34 00 = t
  55. 35 00 = u
  56. 36 00 = v
  57. 37 00 = w
  58. 38 00 = x
  59. 39 00 = y
  60. 3A 00 = z
  61. 3B 00 = [
  62. 3D 00 = ]
  63.  
  64. Roman Numerals:
  65.  
  66. Katakana:
  67.  
  68. Hiragana:
  69.  
  70. Kanji:
Add Comment
Please, Sign In to add comment