Shargast_PRC8/_module/Chapter 2/nss/death_db_name.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

31 lines
949 B
Plaintext

//::///////////////////////////////////////////////
//:: Death Database Naming
//:: death_db_name
//:://////////////////////////////////////////////
/*
*/
//:://////////////////////////////////////////////
//:: Constants
//:://////////////////////////////////////////////
// The strDeathDatabaseName string variable indicates the
// the name of the database for persistant storage of
// flags to catch "cheaters" and to save exp buy back cost
const string strDeathDatabaseName = "ModuleDeathDatabase";
//:://////////////////////////////////////////////
//:: Method: dhDeathGetDatabaseName
//:: Created By: Dauvis
//:: Created On: 7/13/03
//::
//:: This function returns the campaign name to where
//:: player's death information should be stored. This should
//:: allow the build more control.
//:://////////////////////////////////////////////
string dhDeathGetDatabaseName(object oPlayer)
{
return strDeathDatabaseName;
}