I'm getting this script error when I'm attempting to compile some of my scripts that have database entries. The line in question is in the "nwnx_sql" include with the following function:
string SQLVectorToString(vector vVector)
{
float fX = vVector.x;
float fY = vVector.y;
float fZ = vVector.z;
return "#POSITION_X#" + FloatToString(fX) + "#POSITION_Y#" + FloatToString(fY) +
"#POSITION_Z#" + FloatToString(fZ) + "#END#";
}
Never had problems using this exact setup for SQL before. Any ideas?
EDIT
This seems to be affecting only the compilation of parametrized scripts (ie. ones built for use with ExecuteScriptEnhanced).





Retour en haut







