Advertisement
California292

VehicleData

Oct 22nd, 2013
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.41 KB | None | 0 0
  1. =================================================================================================
  2. * File locatation: "C:\Program Files (x86)\Digipen\Nitronic Rush\VehicleData\VehicleData.xml"
  3. =================================================================================================
  4.  
  5. ===============================================================================
  6. * Open the above file in notepad
  7. * Remove everything in the file
  8. * Paste the following in its place (starting with "<?xml")
  9. ===============================================================================
  10. * If you want the hidden vehicles to have in-game images
  11. * Take a screenshot of them
  12. * Name screenshot file the same thing defined in this XML
  13. * Place screenshot in the "%installdir%\Nitronic Rush\Textures\" directory
  14. ===============================================================================
  15.  
  16. <?xml version="1.0" ?>
  17. <VehicleDatas>
  18. <Vehicle name="Interceptor" >
  19. <String name="unlocked_description" >A Top of the Line Antivirus Car.</String>
  20. <String name="locked_description" >How did you lock this car?</String>
  21.  
  22. <String name="object_file" >Car</String>
  23. <String name="unlocked_img_file" >Interceptor.png</String>
  24. <String name="locked_img_file" >Interceptor.png</String>
  25.  
  26. <Boolean name="unlocked" value="1" />
  27. </Vehicle>
  28. <Vehicle name="Avenger" >
  29. <String name="unlocked_description" >A Bad Mamba Jamba Van with Flavor.</String>
  30. <String name="locked_description" >Complete the Story to Unlock</String>
  31.  
  32. <String name="object_file" >Van</String>
  33. <String name="unlocked_img_file" >Avenger.png</String>
  34. <String name="locked_img_file" >AvengerLocked.png</String>
  35.  
  36. <Boolean name="unlocked" value="1" />
  37. </Vehicle>
  38. <Vehicle name="Goldenceptor" >
  39. <String name="unlocked_description" >A Bling-bling Version of the Interceptor that can't Overheat.</String>
  40. <String name="locked_description" >Get All the Achievements to Unlock</String>
  41.  
  42. <String name="object_file" >Car_Gold</String>
  43. <String name="unlocked_img_file" >Goldenceptor.png</String>
  44. <String name="locked_img_file" >GoldenceptorLocked.png</String>
  45.  
  46. <Boolean name="unlocked" value="1" />
  47. </Vehicle>
  48. <Vehicle name="Commander" >
  49. <String name="unlocked_description" >A Blast from the Past!</String>
  50. <String name="locked_description" >Why is this locked?</String>
  51.  
  52. <String name="object_file" >Delorean</String>
  53. <String name="unlocked_img_file" >Commander.png</String>
  54. <String name="locked_img_file" >Commander_Locked.png</String>
  55.  
  56. <Boolean name="unlocked" value="1" />
  57. </Vehicle>
  58. <Vehicle name="Knight Cycle" >
  59. <String name="unlocked_description" >A real fixer-upper!</String>
  60. <String name="locked_description" >Why is this locked?</String>
  61.  
  62. <String name="object_file" >Cycle</String>
  63. <String name="unlocked_img_file" >Knightcycle.png</String>
  64. <String name="locked_img_file" >KnightcycleLocked.png</String>
  65.  
  66. <Boolean name="unlocked" value="1" />
  67. </Vehicle>
  68. <Vehicle name="Intimidator" >
  69. <String name="unlocked_description" >If only the gun were functional...</String>
  70. <String name="locked_description" >If this is locked then, well that's pretty sad.</String>
  71.  
  72. <String name="object_file" >PlayerHumvee</String>
  73. <String name="unlocked_img_file" >Intimidator.png</String>
  74. <String name="locked_img_file" >IntimidatorLocked.png</String>
  75.  
  76. <Boolean name="unlocked" value="1" />
  77. </Vehicle>
  78. </VehicleDatas>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement