Hola, estoy haciendo una página web que lea la posición de unos monstruos en un mapa, para un juego en internet. De hecho, el archivo XML tiene una estructura así:
Código PHP:
<spawn centerx="131" centery="124" centerz="10" radius="5">
<monster name="Amazon" x="-2" y="-4" spawntime="60"/>
<monster name="Amazon" x="2" y="-4" spawntime="60"/>
<monster name="Valkyrie" x="-1" y="-4" spawntime="60"/>
<monster name="Valkyrie" x="1" y="-4" spawntime="60"/>
<monster name="Troll" x="-1" y="4" spawntime="60"/>
<monster name="Troll" x="1" y="4" spawntime="60"/>
</spawn>
<spawn centerx="153" centery="106" centerz="8" radius="10">
<monster name="Rat" x="-3" y="1" spawntime="60"/>
<monster name="Rat" x="0" y="-3" spawntime="60"/>
<monster name="Rat" x="3" y="1" spawntime="60"/>
</spawn>
Entonces, estoy intentando que en la web se muestren los siguientes datos.
El nombre del monstruo, que sería el apartado name="" que aparece en el tag <monster />
La posición X, dónde centerx="" que está en el tag <spawn> y la posición Y, centery="" también en el tag <spawn>.
Quedando así:
Cita: Nombre del monstruo: Rat
Posición X: 153
Posición Y: 106
Nombre del monstruo: Troll
Posición X: 131
Posición Y: 124
Como sería posible hacer eso?
Gracias