Advertisement
SpaceEngineersAddict

Untitled

Mar 26th, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.43 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <Definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  3.   <RespawnShips>
  4.     <Ship>
  5.       <Id>
  6.         <TypeId>RespawnShipDefinition</TypeId>
  7.         <SubtypeId>RespawnShipsmall</SubtypeId> <<<<< This should also be the same in your ship prefab >>>>>
  8.       </Id>
  9.       <DisplayName>Small Starter</DisplayName>
  10.       <Icon>Textures\GUI\Icons\Fake.dds</Icon>
  11.       <CooldownSeconds>900</CooldownSeconds>
  12.       <Prefab>RespawnShipsmall</Prefab> <<<<< This should also be the same as the name of your ship prefab >>>>>
  13.     </Ship>
  14.     <Ship Enabled="false">
  15.       <Id>
  16.         <TypeId>RespawnShipDefinition</TypeId>
  17.         <SubtypeId>PlanetaryLander</SubtypeId>
  18.       </Id>
  19.       <DisplayName>DisplayName_PlanetaryLander</DisplayName>
  20.       <Icon>Textures\GUI\Icons\Fake.dds</Icon>
  21.       <CooldownSeconds>900</CooldownSeconds>
  22.       <Prefab>AtmosphericLander</Prefab>
  23.     </Ship>
  24.     <Ship Enabled="false">
  25.       <Id>
  26.         <TypeId>RespawnShipDefinition</TypeId>
  27.         <SubtypeId>MarsLander</SubtypeId>
  28.       </Id>
  29.       <DisplayName>DisplayName_MarsLander</DisplayName>
  30.       <Icon>Textures\GUI\Icons\Fake.dds</Icon>
  31.       <CooldownSeconds>900</CooldownSeconds>
  32.       <Prefab>MarsLander</Prefab>
  33.     </Ship>
  34.     <Ship Enabled="false">
  35.       <Id>
  36.         <TypeId>RespawnShipDefinition</TypeId>
  37.         <SubtypeId>AlienLander</SubtypeId>
  38.       </Id>
  39.       <DisplayName>DisplayName_AlienLander</DisplayName>
  40.       <Icon>Textures\GUI\Icons\Fake.dds</Icon>
  41.       <CooldownSeconds>900</CooldownSeconds>
  42.       <Prefab>AlienLander</Prefab>
  43.     </Ship>
  44.     <Ship Enabled="false">
  45.       <Id>
  46.         <TypeId>RespawnShipDefinition</TypeId>
  47.         <SubtypeId>RespawnShip</SubtypeId>
  48.       </Id>
  49.       <DisplayName>DisplayName_RespawnShip_Yellow</DisplayName>
  50.       <Icon>Textures\GUI\Icons\Fake.dds</Icon>
  51.       <CooldownSeconds>900</CooldownSeconds>
  52.       <Prefab>RespawnShip</Prefab>
  53.     </Ship>
  54.     <Ship Enabled="false">
  55.       <Id>
  56.         <TypeId>RespawnShipDefinition</TypeId>
  57.         <SubtypeId>Assembler</SubtypeId>
  58.       </Id>
  59.       <DisplayName>DisplayName_RespawnShip_Assembler</DisplayName>
  60.       <Icon>Textures\GUI\Icons\Fake.dds</Icon>
  61.       <CooldownSeconds>540</CooldownSeconds>
  62.       <Prefab>Respawn Ship 2</Prefab>
  63.     </Ship>
  64.     <Ship Enabled="false">
  65.       <Id>
  66.         <TypeId>RespawnShipDefinition</TypeId>
  67.         <SubtypeId>Drill</SubtypeId>
  68.       </Id>
  69.       <DisplayName>DisplayName_RespawnShip_ShipDrill</DisplayName>
  70.       <Icon>Textures\GUI\Icons\Fake.dds</Icon>
  71.       <CooldownSeconds>300</CooldownSeconds>
  72.       <Prefab>Small Drill Ship</Prefab>
  73.     </Ship>
  74.     <Ship Enabled="false">
  75.       <Id>
  76.         <TypeId>RespawnShipDefinition</TypeId>
  77.         <SubtypeId>EscapePod</SubtypeId>
  78.       </Id>
  79.       <DisplayName>DisplayName_RespawnShip_EscapePod</DisplayName>
  80.       <Icon>Textures\GUI\Icons\Fake.dds</Icon>
  81.       <CooldownSeconds>240</CooldownSeconds>
  82.       <Prefab>Small Escape Pod</Prefab>
  83.     </Ship>
  84.     <Ship Enabled="false">
  85.       <Id>
  86.         <TypeId>RespawnShipDefinition</TypeId>
  87.         <SubtypeId>RefineryAssembler</SubtypeId>
  88.       </Id>
  89.       <DisplayName>DisplayName_RespawnShip_RefineryAssembler</DisplayName>
  90.       <Icon>Textures\GUI\Icons\Fake.dds</Icon>
  91.       <CooldownSeconds>660</CooldownSeconds>
  92.       <Prefab>Respawn Ship 3</Prefab>
  93.     </Ship>
  94.   </RespawnShips>                
  95. </Definitions>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement