Campaign Creation Documentation

Use this page to navigate the Campaign Creation Documentation. It's not expected that you read all of this to create a campaign - Instead, use this as a reference during campaign creation, whenever you need to use a specific event.






These pages are being restructured and may not be complete!

You can find the older version of this page here.

void

Description

Void events immediately end after beginning.
These are primarily used in modules, to set variables and then jump to another event.




Specific Attributes

This event has no specific attributes.




Example

This example shows a void event, which splits into one of several different events, depending on some Variables.

"void": {
    "cat_or_dog": {
        "split": {
            "<<animal>> == cat": "text:cat",
            "<<animal>> == dog": "text:dog",
            "1 == 1"           : "text:defaultBranch"
        }
    }
}