Modding:Maps: Difference between revisions

38 bytes added ,  15:57, 23 May 2019
no edit summary
imported>CaptainTechnicality54384
(Created page with "Category:Modding ==.rpm files== RPM files are stores of static map content. They are a simple xml format. RPM files can be overriden from your mod folder. The in-game map...")
 
imported>CaptainTechnicality54384
No edit summary
Line 11: Line 11:


'''Example Joppa.RMP from Two Ctesiphus tutorial mod'''
'''Example Joppa.RMP from Two Ctesiphus tutorial mod'''
<?xml version="1.0" encoding="utf-8"?>
<syntaxhighlight lang="xml">
<Map
<?xml version="1.0" encoding="utf-8"?>
  Width="80"
<Map
  Height="25" Load="Merge">
  Width="80"
  <cell
  Height="25" Load="Merge">
    X="41"
  <cell
    Y="7">
    X="41"
    <object Name="Ctesiphus"></object>
    Y="7">
  </cell>
    <object Name="Ctesiphus"></object>
</Map>
  </cell>
</Map>
</syntaxhighlight>