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

@@ -65,44 +65,44 @@ string NWNX_Redis_GetResultAsString(int resultId);
int NWNX_Redis_GetResultType(int resultId)
{
NWNX_PushArgumentInt("NWNX_Redis", "GetResultType", resultId);
NWNX_PushArgumentInt(resultId);
NWNX_CallFunction("NWNX_Redis", "GetResultType");
return NWNX_GetReturnValueInt("NWNX_Redis", "GetResultType");
return NWNX_GetReturnValueInt();
}
int NWNX_Redis_GetArrayLength(int resultId)
{
NWNX_PushArgumentInt("NWNX_Redis", "GetResultArrayLength", resultId);
NWNX_PushArgumentInt(resultId);
NWNX_CallFunction("NWNX_Redis", "GetResultArrayLength");
return NWNX_GetReturnValueInt("NWNX_Redis", "GetResultArrayLength");
return NWNX_GetReturnValueInt();
}
// Returns the last
int NWNX_Redis_GetArrayElement(int resultId, int idx)
{
NWNX_PushArgumentInt("NWNX_Redis", "GetResultArrayElement", resultId);
NWNX_PushArgumentInt("NWNX_Redis", "GetResultArrayElement", idx);
NWNX_PushArgumentInt(resultId);
NWNX_PushArgumentInt(idx);
NWNX_CallFunction("NWNX_Redis", "GetResultArrayElement");
return NWNX_GetReturnValueInt("NWNX_Redis", "GetResultArrayElement");
return NWNX_GetReturnValueInt();
}
float NWNX_Redis_GetResultAsFloat(int resultId)
{
NWNX_PushArgumentInt("NWNX_Redis", "GetResultAsString", resultId);
NWNX_PushArgumentInt(resultId);
NWNX_CallFunction("NWNX_Redis", "GetResultAsString");
return StringToFloat(NWNX_GetReturnValueString("NWNX_Redis", "GetResultAsString"));
return StringToFloat(NWNX_GetReturnValueString());
}
int NWNX_Redis_GetResultAsInt(int resultId)
{
NWNX_PushArgumentInt("NWNX_Redis", "GetResultAsString", resultId);
NWNX_PushArgumentInt(resultId);
NWNX_CallFunction("NWNX_Redis", "GetResultAsString");
return StringToInt(NWNX_GetReturnValueString("NWNX_Redis", "GetResultAsString"));
return StringToInt(NWNX_GetReturnValueString());
}
string NWNX_Redis_GetResultAsString(int resultId)
{
NWNX_PushArgumentInt("NWNX_Redis", "GetResultAsString", resultId);
NWNX_PushArgumentInt(resultId);
NWNX_CallFunction("NWNX_Redis", "GetResultAsString");
return NWNX_GetReturnValueString("NWNX_Redis", "GetResultAsString");
return NWNX_GetReturnValueString();
}