Skip to content

E:\SeoJG\D2NT31_NTBot42(For1.13c)Bot\D2NT\scripts\libs\common\NTItemParser.ntl (64) : SyntaxError:missing ) in paraenthetical

사냥터에서 랜덤하게 위 에러가 나면서 Pause 누른것 처럼 가만히 서 있습니다.

피트 사냥중 이나나 메피 잡고 위 상자 까고 서 있네요.

그러다가 설정해둔 최대 게임시간이 되면 종료되고 다시 방만들고 사냥하다 위 에러 나면서 가만히 서 있고를

반복하네요..

NTItemParser.ntl (64) => 요부분이 저파일 64번째 줄에서 에러가 나는것 같아서

메세지에서 나오는 파일을 찾아서 64번째를 봐도 무슨 말인지를 모르겠네요^^

아래는 위 파일 내용입니다.

function NTIPCheckItem(item)
{
 var i;
 var _identified;
 var _result = 0;

 _identified = item.itemflag & 0x10;

 for(i = 0 ; i < _NTIP_CheckList.length ; i++)
 {
 if(_NTIP_CheckList[i][0].length > 0)
 {
 if(eval(_NTIP_CheckList[i][0]))
 {
 if(_NTIP_CheckList[i][1].length > 0)
 {
 여기가 64번째입니다. ===> if(eval(_NTIP_CheckList[i][1]))
 return 1;
 else if(!_identified && _result == 0)
 _result = -1;
 }
 else
 return 1;
 }
 }
 else if(_NTIP_CheckList[i][1].length > 0)
 {
 if(eval(_NTIP_CheckList[i][1]))
 return 1;
 else if(!_identified && _result == 0)
 _result = -1;
 }
 }

 return _result;
}

고수님들 좀 도와주세요^^