Updated TLK for PRC8 update
Updated TLK for PRC8 update. Added placeable house blueprints. Updated NWNxEE. Full compile.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user