Updated TLK for PRC8 update

Updated TLK for PRC8 update.  Added placeable house blueprints.  Updated NWNxEE.  Full compile.
This commit is contained in:
Jaysyn904
2024-08-31 20:38:17 -04:00
parent 8a5d80a2ea
commit 37b68cf6b6
1458 changed files with 27093 additions and 4211 deletions

View File

@@ -51,10 +51,10 @@ void NWNX_Appearance_SetOverride(object oPlayer, object oCreature, int nType, in
{
string sFunc = "SetOverride";
NWNX_PushArgumentInt(NWNX_Appearance, sFunc, nValue);
NWNX_PushArgumentInt(NWNX_Appearance, sFunc, nType);
NWNX_PushArgumentObject(NWNX_Appearance, sFunc, oCreature);
NWNX_PushArgumentObject(NWNX_Appearance, sFunc, oPlayer);
NWNX_PushArgumentInt(nValue);
NWNX_PushArgumentInt(nType);
NWNX_PushArgumentObject(oCreature);
NWNX_PushArgumentObject(oPlayer);
NWNX_CallFunction(NWNX_Appearance, sFunc);
}
@@ -63,11 +63,11 @@ int NWNX_Appearance_GetOverride(object oPlayer, object oCreature, int nType)
{
string sFunc = "GetOverride";
NWNX_PushArgumentInt(NWNX_Appearance, sFunc, nType);
NWNX_PushArgumentObject(NWNX_Appearance, sFunc, oCreature);
NWNX_PushArgumentObject(NWNX_Appearance, sFunc, oPlayer);
NWNX_PushArgumentInt(nType);
NWNX_PushArgumentObject(oCreature);
NWNX_PushArgumentObject(oPlayer);
NWNX_CallFunction(NWNX_Appearance, sFunc);
return NWNX_GetReturnValueInt(NWNX_Appearance, sFunc);
return NWNX_GetReturnValueInt();
}