Conversation files (file type DLG (dialog)) are used to have NPCs speak to players, and even each other.

Conversation Overview

Even given the age of the engine the conversation editor in NWN contains some very nifty abilities to allow easy looping and backtracking and can contain copious amounts of dialogue.

The game supports an easy way of having "single" responses when clicked on as well, utilising some default AI/script functionality.

There is also in NWN:EE some major improvements with Script Parameters allowing easy reuse of scripts with the conversation itself storing the required variables (Eg; "QUEST" being set to value "20" and the script using these).

Conversation Limitations

Note that apart from when in a cutscene (Where escape will trigger the "exit cutscene" event) a player can always cancel conversations. There are two events to deal with this - on abort and on exit (one being unnatural - moving away/esc, one being normal, such as a conversation ending with a End Dialogue option).

There are some limitations on the entire format (or at least worthwhile guidelines!) due to the games age / network setup;

  • Length of dialogue
  • Amount of responses

Tokens

Tokens represent non-standard text, the engine will do something with, such as highlighting it a certain colour, changing the words based on context or from a script value.

Tokens to Highlight Text

These will encompass text to make it a particular colour in game. Bioware generally defaulted to putting these in square brackets, which the conversation editor will also do for you by default.

TokenExample TextOutputDescription and Notes
<StartAction></Start><StartAction>[You attempt to force the door]</Start>[You attempt to force the door]Green - RGB: 0, 255, 0
<StartHighlight></Start><StartHighlight>[You notice something]</Start> The door has a crack in it, just large enough to peer through.[You notice something] The door has a crack in it, just large enough to peer through.Blue - RGB: 0, 0, 255
<StartCheck></Start><StartCheck>[Animal Empathy]</Start> You attempt to calm the cat.[Animal Empathy] You attempt to calm the cat.Red - RGB: 255, 0, 0

Tokens with Automatic Values

These are tokens, a word put between <>, automatically fill in based up on the PC speaking with the NPC, for instance <he/she> will become either "She" (female) or "He" (male/default). This simplifies having to use tokens - since all of these could be calculated and set in a script.

Example PC:

  • Name: Aluvian Darkstar
  • Elf
  • Female
  • 12 Wizard / 2 Rogue
  • Chaotic Neutral
  • Deity: Erevan Ilesere
  • Subrace: Wood Elf

Date/time:

TokenExample TextOutput ExampleDescription and Notes
<Alignment>Why would someone of <alignment> persuasion do this?Why would someone of Chaotic Neutral persuasion do this?
<alignment>Curse you and your <alignment> nature!Curse you and your chaotic neutral nature!
<Boy/Girl><Boy/Girl> you will listen to me and sit down!Girl you will listen to me and sit down!
<boy/girl>What do you say, <boy/girl>?What do you say, girl?
<Brother/Sister>Welcome to our temple, <Brother/Sister>!Welcome to our temple, Sister!
<brother/sister>Well that'd make you kinda like a little <brother/sister>, wouldn't it?Well that'd make you kinda like a little sister, wouldn't it?
<Class>We need training staff. <Class> trainer would be your job, how about it?We need training staff. Wizard trainer would be your job, how about it?Uses the first class lot, so "unreliable" after level 1. Uses classes.2da tlk reference.
<class>A <class> eh? Welcome aboard!A wizard eh? Welcome aboard!Uses the first class slot, so "unreliable" after level 1. Uses classes.2da tlk reference made lowercase
<Day/Night><Day/Night>times like this makes this all worthwhile.Daytimes like this make this all worthwhile.

Day is defined as:

Night is defined as:

<day/night>What a blasted <day/night>!What blasted day!
<Deity>For <Deity>'s sake!For Erevan Illesre's sake!The text-field "Deity" - also retrievable by GetDeity but otherwise unused by the engine (can be set with SetDeity)
<FirstName>

May change based on the language
<FullName>


<GameMonth>


<GameTime>


<GameYear>


<Good/Evil>


<good/evil>


<He/She>


<he/she>


<Him/Her>


<him/her>


<His/Her>


<his/her>


<His/Hers>


<his/hers>


<Lad/Lass>


<lad/lass>


<LastName>


<Lawful/Chaotic>


<lawful/chaotic>


<Law/Chaos>


<law/chaos>


<Level>You're at level <Level>.You're at level 14.Equivalent to GetHitDice
<Lord/Lady>


<lord/lady>


<Male/Female>


<male/female>


<Man/Woman>


<man/woman>


<Master/Mistress>


<master/mistress>


<Mister/Missus>


<mister/missus>


<PlayerName>


<QuarterDay>

Morning is defined as:

Afternoon is defined as:

Evening is defined as:

Night is defined as:

<quarterday>


<Race>

Name from racialtypes.2da
<race>

Name from racialtypes.2da, but made lowercase
<Sir/Madam>


<sir/madam>


<Subrace>

Subrace field set by player or by script (GetSubRace/SetSubRace)
<bitch/bastard>


Custom Tokens

See Colour Tokens.

Conversation Scripts

Script basic information to follow.

  • No labels