Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1.  
  2.  
  3.  
  4. All of this will be done with a Hex Editor, I recommend HxD.
  5.  
  6. ************************************************************************************************************************************************
  7. ************************************************************************************************************************************************
  8. ************************************************************************************************************************************************
  9.  
  10. EDITING ITEMS THAT A CONTAINER OR A PERSON HAS
  11. _______________________________________________________________________________________________________
  12.  
  13. Examples where Item Strings can be found in:
  14.  
  15. * CContainerBehaviour.Goodies2
  16. * rhalta_1 (Map File)
  17.  
  18. _______________________________________________________________________________________________________
  19. Explaination:
  20.  
  21. String: WPN_IRONHANDAXE.....................
  22. Hex Code: 57 50 4E 5F 49 52 4F 4E 48 41 4E 44 41 58 45 00 0C 00 00 00 12 00 00 00 01 00 00 00 1C 00 00 00 13 00 00 00
  23. _______________________________________________________________________________________________________
  24.  
  25. 57 50 4E 5F 49 52 4F 4E 48 41 4E 44 41 58 45 - Item name
  26. WPN_IRONHANDAXE - Item ID
  27. 01 - Item Ammount (Values must be in Hex)
  28. 0C - always after the Item Id string, a 00 must be between the string and the 0C
  29. 12 - Unkown
  30. 13 - Unkown
  31.  
  32. ************************************************************************************************************************************************
  33. ************************************************************************************************************************************************
  34. ************************************************************************************************************************************************
  35.  
  36. ADDING MUSIC / EDITING MUSIC THAT IS PLAYED
  37. _______________________________________________________________________________________________________
  38.  
  39. Music Folder:
  40.  
  41. Oblivion\PSP_GAME\USRDIR\DATA\MUSIC
  42.  
  43. * The Music must be a .rws data.
  44. * To insert the music just simply insert it into that folder, the name should be 8 letters long:
  45. Example: MYMUSIC1
  46.  
  47. _______________________________________________________________________________________________________
  48.  
  49. Insert the Music:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement