Endless Adventures Chargen Info

From Dragon Age Toolset Wiki
Jump to: navigation, search

Endless Adventures Main Page

Besides allowing the creation of dwarf mages, Endless Adventures has three new background options. All of these are for flavor purposes only: none will offer gameplay benefits unless a specific EAP references them.

New Backgrounds

Mercenary

"You go by many names. Treasure-hunter, sellsword, soldier of fortune; they all are true... to an extent. Whatever you really fight for, people know you expect a reward."

Title ("Surname"): Sellsword

Outlaw

"Whether through your own fault or another's, you no longer are welcome where you once lived. You might be a wanted criminal, wrongfully accused, or an outcast. Whatever you were, you can't go back."

Title ("Surname"): Wolf-head

Chantry

"The Chantry is on the rise; or at least that's what you are told. Whether you hunt mages as a Templar, seek out heretics as a member of the Inquisition, or try to spread the Chantry's teachings through heroism, the Maker is on your side."

Title ("Surname"): Chanter

Modder Information: Checking for a Background

To check for one of these backgrounds, you must either create a custom conditional script or use a plot script and defined flags. An example of the proper script:

int StartingConditional()
{
if (nBackground == 6)
            return TRUE;
            else
            return FALSE;
}

An example of a single flag in the defined flag section of a plot script:

case BACKGROUND_MERCENARY:
           {
            if (nBackground == 6)
            return TRUE;
            else
            return FALSE;
            break;
           }

The number to check for is based on the background you wish to return:

  • Mercenary: 6
  • Outlaw: 7
  • Chantry: 8