Major update

Created top hak for crafting dialog.  Moved Bioware creature abilities to top hak.  Fixed DMFI wand handouts.  Added DMFI language handouts.  Added CCOH 6.  Disabled PC corpse system.  Modified new player startup system.  Full compile.  Updated release archive.
This commit is contained in:
Jaysyn904
2024-09-17 13:24:57 -04:00
parent 5d27edafba
commit 903f023230
626 changed files with 57291 additions and 9788 deletions

View File

@@ -0,0 +1,65 @@
#include "mk_inc_debug"
int MK_HEX_GetIsValidHexChar(string c)
{
return ((c=="0") || (c=="1") || (c=="2") || (c=="3") || (c=="4") ||
(c=="5") || (c=="6") || (c=="7") || (c=="8") || (c=="9") ||
(c=="a") || (c=="b") || (c=="c") || (c=="d") || (c=="e") ||
(c=="f"));
}
int MK_HEX_GetHexValue(string c)
{
int nValue = StringToInt(c);
if (nValue>0)
return nValue;
else if (c=="0")
return 0;
else if (c=="a")
return 10;
else if (c=="b")
return 11;
else if (c=="c")
return 12;
else if (c=="d")
return 13;
else if (c=="e")
return 14;
else if (c=="f")
return 15;
return -1;
}
int MK_HEX_HexStringToInt(string sHexString)
{
int nLen = GetStringLength(sHexString);
int iStart=0;
if ((nLen>=2) && (GetStringLeft(sHexString,2)=="0x"))
{
iStart+=2;
}
int iPos;
int nValue = 0;
int n;
for (iPos=iStart; iPos<nLen; iPos++)
{
string c = GetSubString(sHexString,iPos,1);
int h = MK_HEX_GetHexValue(c);
/* MK_DEBUG_TRACE("> iStart="+IntToString(iStart)+
", iPos="+IntToString(iPos)+
", nLen="+IntToString(nLen)+
", c="+c+
", h="+IntToString(h)+
", nValue="+IntToString(nValue));*/
if (h==-1)
{
return -1;
}
nValue*=16;
nValue+=h;
}
// MK_DEBUG_TRACE("MK_HEX_HexStringToInt("+sHexString+")="+IntToString(nValue));
return nValue;
}