cieciwa
Joined: 09 Aug 2005 Posts: 33 Location: Cracov, Poland
|
Posted: Wed Nov 09, 2005 11:07 Post subject: [Linux] 1.66, CEP, NWNX2 - problem .. |
|
|
Hi,
I have small problem with NWNx and NWN 1.66.
I have function which change PC heads :
Code: |
void SetBodyPart(object oObject, int nBodyPart, int nBodyPartNum)
{
string sPartNum;
SetLocalString(oObject, "NWNX!FUNCTIONS!SETBODYPART",
IntToString(nBodyPart)+"!"+IntToString(nBodyPartNum));
}
int GetBodyPart(object oObject, int nBodyPart)
{
string sBodyPartNum;
SetLocalString(oObject, "NWNX!FUNCTIONS!GETBODYPART",
IntToString(nBodyPart)+" ");
sBodyPartNum = GetLocalString(oObject, "NWNX!FUNCTIONS!GETBODYPART");
return StringToInt(sBodyPartNum);
}
|
with NWNX 2.5.3 and NWN-1.65 this works OK.
But whet I update server to version 1.66 this stop working.
I don't konw why, Can any one tell me where is error ?
Or what I need to check/change ? |
|