125 lines
5.4 KiB
Plaintext
125 lines
5.4 KiB
Plaintext
// zzdlg_config_inc
|
|
//
|
|
// Copyright 2005-2006 by Greyhawk0
|
|
//
|
|
// This will contain any configuration information for ZzDialog. Change the
|
|
// values to configure the default behavior.
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "zzdlg_color_inc"
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// The default label for the autogenerated response "Next Page". This response
|
|
// will only be visible when the response list grows too large.
|
|
//
|
|
const string DLG_DEFAULTLABEL_NEXT = "Next Page";
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// The default label for the autogenerated response "Previous Page". This
|
|
// response will only be visible when the response list grows too large and
|
|
// the player has navigated to page 2 or higher.
|
|
//
|
|
const string DLG_DEFAULTLABEL_PREV = "Previous Page";
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// The default label for the autogenerated response "Reset". This response is
|
|
// has many uses and is most likely to be overwritten on a per-script basis.
|
|
// As such, the command to activate it, dlgActivateResetResponse(), has an
|
|
// optional parameter to override the default. dlgDeactivateResetResponse(),
|
|
// will turn off the reset response.
|
|
//
|
|
const string DLG_DEFAULTLABEL_RESET = "Reset";
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// The default label for the autogenerated response "End". This response is
|
|
// an automatic ending of the script. This is usually "goodbye" for speech or
|
|
// "Leave <object>" for an action. This response however can be lengthy but
|
|
// should convey an end to the conversation. dlgActivateEndResponse() turns
|
|
// on the autogenerated response and takes an optional string to override this
|
|
// default.
|
|
//
|
|
const string DLG_DEFAULTLABEL_END = "End";
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// The default label for the autogenerated response "Continue". This response
|
|
// is an continuation of a long dialog with little or no interaction from the
|
|
// player. The label can be changed each OnContinue if desired.
|
|
//
|
|
const string DLG_DEFAULTLABEL_CONTINUE = "Continue";
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// DEFAULT CUSTOM LABELS FOR AUTOGENERATED RESPONSES - END
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// The default setting for changing the maximum responses displayed, including
|
|
// autogenerated responses. Note that to override this value you must call
|
|
// dlgSetMaximumResponses() with a value between 5 and 15, for each dialog you
|
|
// wish to override.
|
|
//
|
|
const int DLG_DEFAULT_MAX_RESPONSES = 15;
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// The default color for talking responses. dlgAddResponseTalk() uses this
|
|
// color to display the response.
|
|
//
|
|
const string DLG_DEFAULT_TXT_TALK_COLOR = txtWhite;
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// The default color for action responses. dlgAddResponseAction() uses this
|
|
// color to display the response.
|
|
//
|
|
const string DLG_DEFAULT_TXT_ACTION_COLOR = txtLime;
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// The default color for the autogenerated response "Next Page".
|
|
//
|
|
const string DLG_DEFAULT_TXT_NEXT_COLOR = txtAqua;
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// The default color for the autogenerated response "Previous Page".
|
|
//
|
|
const string DLG_DEFAULT_TXT_PREVIOUS_COLOR = txtAqua;
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// The default color for the autogenerated response "Reset".
|
|
// dlgActivateResetResponse() uses this color to display the response.
|
|
//
|
|
const string DLG_DEFAULT_TXT_RESET_COLOR = txtYellow;
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// The default color for the autogenerated response "End".
|
|
// dlgActivateEndResponse() uses this color to display the response.
|
|
//
|
|
const string DLG_DEFAULT_TXT_END_COLOR = txtRed;
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// The default color for the autogenerated response "Continue".
|
|
// dlgChangeLabelContinue() uses this color to display the response.
|
|
//
|
|
const string DLG_DEFAULT_TXT_CONTINUE_COLOR = txtLime;
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|