Campaigns

A campaign can be described as a number of separate adventures that are stringed together to form a cohesive whole. If an adventure can be compared to a movie, a campaign can be compared to a TV-series.

Edit the campaign.

    1. Adv. #1

    2. Adv. #2


Debug

$xml

SimpleXMLElement Object
(
    [name] => El Cisco Grande
    [author] => Staffan Lindsgård
    [genre] => Horror
    [setting] => Contemporary
    [synopsis] => What may at first seem to be an ordinary tale of mafia domination and revenge soon turns out to be something far more sinister and dark and the PC:s will have to break a few personal boundaries in order to save themselves - as well as the entire world.
    [adventures] => SimpleXMLElement Object
        (
            [adventure] => Array
                (
                    [0] => SimpleXMLElement Object
                        (
                            [adv_title] => Finding Nemodius
                            [adv_link] => a2_finding_nemodius.xml
                        )

                    [1] => SimpleXMLElement Object
                        (
                            [adv_title] => The Wizard of Ozra
                            [adv_link] => a2_the_wizard_of_ozra.xml
                        )

                )

        )

)

$issent

0

$delete_adventure

no

$xml (as XML)

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="../rp-campaign.xsl"?>
<campaign xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../rp-campaign.xsd">
	<name>El Cisco Grande</name>
	<author>Staffan Lindsgård</author>
	<genre>Horror</genre>
	<setting>Contemporary</setting>
	<synopsis>What may at first seem to be an ordinary tale of mafia domination and revenge soon turns out to be something far more sinister and dark and the PC:s will have to break a few personal boundaries in order to save themselves - as well as the entire world.</synopsis>
	<adventures>
		<adventure>
			<adv_title>Finding Nemodius</adv_title>
			<adv_link>a2_finding_nemodius.xml</adv_link>
		</adventure>
		<adventure>
			<adv_title>The Wizard of Ozra</adv_title>
			<adv_link>a2_the_wizard_of_ozra.xml</adv_link>
		</adventure>
	</adventures>
</campaign>