TechOFreak

Episode 24 XML Entries

Jan 6th, 2021 (edited)
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.26 KB | None | 0 0
  1. //From my Amnesia Rebirth Tutorial Series
  2. //Episode 24 Item Titles & Descriptions!
  3. //https://www.youtube.com/playlist?list=PL4KkjlmOwLwwMVqedCNpi6caUxhgyf8Qr
  4. //-----------------------------------------------------------
  5.  
  6. /////////////////////////////////////////////
  7. //The entry for the Inventory.cfg file
  8. /////////////////////////////////////////////
  9.  
  10. <!-- CUSTOM ENTRIES -->
  11.        
  12.         <ItemType ID="">
  13.             <Inventory Icon="inventory_item_key_relic_room"/>
  14.             <Use OnWorld="true" CanUseOnWorldMapCallback="" UseOnWorldMapCallback=""/>
  15.         </ItemType>
  16.        
  17. <!-- END CUSTOM ENTRIES -->
  18.  
  19. /////////////////////////////////////////////
  20. //The entry for the english.lang file
  21. /////////////////////////////////////////////
  22.  
  23. <LANGUAGE>
  24.  
  25.   <CATEGORY Name="StartingRoom">
  26.    
  27.   </CATEGORY>
  28.  
  29.   <CATEGORY Name="Hints">
  30.     <Entry Name="HintStorageDoor">Explore around to locate a way to open this door.</Entry>
  31.   </CATEGORY>
  32.  
  33.   <CATEGORY Name="Inventory">
  34.     <Entry Name="StorageKey">Storage Room Key</Entry>
  35.     <Entry Name="StorageKey_Desc">This is the key to open the storage room.</Entry>
  36.    
  37.     <Entry Name="Matchbook">Custom Matchbook</Entry>
  38.     <Entry Name="Matchbook_Desc">A custom desc of matchbook...</Entry>
  39.   </CATEGORY>
  40.  
  41. </LANGUAGE>
Add Comment
Please, Sign In to add comment