Major update

Fixed CCOH, Fixed starting GP, Fixed DMFI languages, Fix cep weapon appearances, Fixed new player start up system.  Added PC deleter.  Added ACP 4.1.  Full compile.  Updated release archive.
This commit is contained in:
Jaysyn904
2024-09-16 23:40:48 -04:00
parent 7f75e229f9
commit 5d27edafba
6724 changed files with 558193 additions and 92109 deletions

View File

@@ -1,5 +1,5 @@
//DMFI Voice script
#include "prc_inc_racial"
int AppearType (string sCom)
{
@@ -1192,8 +1192,8 @@ string ConvertLeetspeak(string sLetter)
case 36: return "|<";
case 11: return "1";
case 37: return "1";
case 12: return "/\/\";
case 38: return "/\/\";
case 12: return "/\/\/";
case 38: return "/\/\/";
case 13: return "|\|";
case 39: return "|\|";
case 14: return "0";
@@ -2253,14 +2253,20 @@ int GetDefaultRacialLanguage(object oPC, int iRename)
return 0;
}
////////////////////////////////////////////////////////////////////////
int GetDefaultClassLanguage(object oPC)
{
int iRace = MyPRCGetRacialType(oPC);
int iSubrace = GetRacialType(oPC);
if (GetLevelByClass(CLASS_TYPE_RANGER, oPC) || GetLevelByClass(CLASS_TYPE_DRUID, oPC))
return 8;
if (GetLevelByClass(CLASS_TYPE_ROGUE, oPC))
return 9;
if ((GetSubRace(oPC)=="drow") ||(GetSubRace(oPC)=="DROW")||(GetSubRace(oPC)=="Drow"))
if (iSubrace == RACIAL_TYPE_DROW_MALE || iSubrace == RACIAL_TYPE_DROW_FEMALE || iSubrace == RACIAL_TYPE_HALFDROW)
return 13;
if (iRace == RACIAL_TYPE_FEY)
return 14;
return 0;
}