57 lines
3.1 KiB
Plaintext
57 lines
3.1 KiB
Plaintext
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// CONFIGURATION FILE FOR THE D20 COMBAT SYSTEM OVERRIDE //
|
|
// //
|
|
// You may edit these settings as you see fit. Note that improper configuration can lead to undesireable results. //
|
|
// Make sure to fully read each option to learn about what it does, and how to use it correctly. //
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
// SETTINGS //
|
|
// You can edit these to tune the combat system to your liking. //
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// If you plan to run your server on a Linux-based operating system, this should be set to TRUE.
|
|
// If you plan to run your server on a Windows-based operating system, this should be set to FALSE.
|
|
// If you're unsure what this means, set to FALSE.
|
|
const int GUN_USING_LINUX = TRUE;
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
// MESSAGE DISABLING //
|
|
// If you are running the server on a LINUX operating system, you have the //
|
|
// option to disable some NWN messages. Windows users cannot disable them as //
|
|
// there is no plugin to do this yet. //
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// This disables the message you receive when an item is lost.
|
|
// Set this to TRUE if you want to disable the "Item Lost" message.
|
|
// Set this to FALSE if you want to enable the "Item Lost" message.
|
|
// Default: FALSE
|
|
const int GUN_DISABLE_MESSAGE_ITEM_LOST = TRUE;
|
|
|
|
// This disables the message you receive when an item is gained.
|
|
// Set this to TRUE if you want to disable the "Item Gained" message.
|
|
// Set this to FALSE if you want to enable the "Item Gained" message.
|
|
// Default: FALSE
|
|
const int GUN_DISABLE_MESSAGE_ITEM_GAINED = TRUE;
|
|
|
|
// This disables the message you receive when initiative rolls are made.
|
|
// Set this to TRUE if you want to disable the "Initiative Roll" messages.
|
|
// Set this to FALSE if you want to enable the "Initiative Roll" messages.
|
|
// Default: FALSE
|
|
const int GUN_DISABLE_MESSAGE_INITIATIVE_ROLLS = TRUE;
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
// MESSAGES //
|
|
// These settings can be changed to display different messages of your choice. //
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Message displayed when ammo is low.
|
|
const string GUN_LOW_AMMO_MESSAGE = "Low ammo!";
|
|
// Message displayed when PC is out of ammo.
|
|
const string GUN_OUT_OF_AMMO_MESSAGE = "Out of ammo!";
|
|
|
|
// Error checking
|
|
//void main(){}
|