Skip to content

자꾸 오류가 뜨네요 ...

조회 수
1,335
추천 수
1
등록일

scripts\libs\common\MyPick.ntl(750):SynataxError: missing ) in parenthetical

이라고 계속 뜨네요..

왜이런지 모르겠네요...

// mode: 0 = 모두 검사, 1 = 보관용 검사, 2 = 보관용->큐빙용 검사, 3 = 보관용->큐빙용->상점용 검사, 22 = 큐빙용 검사
// countMode: 0 = 보관 중인 아이템 개수 검사하지 않음, 1 = item은 보관 중인 아이템 개수 검사에서 제외, 2 = 보관 중인 아이템 개수 검사
My.Pick.NTIPCheckItem = function (item, mode, countMode)
{
 var i, _length;
 var _count;
 var _items, _section, _index;
 var _result = 0;
 var _identified = item.itemflag & _NTIPAliasFlag["identified"];

 if (arguments.length < 2) mode = 0;
 if (arguments.length < 3) countMode = 0;

 if (mode != 22)
 {
 _index = "Type" + item.itemtype;
 if (My.Pick.ntip.typeList[_index] != undefined)
 {
 for (i = 0; i < My.Pick.ntip.typeList[_index].length; i++)
 {
 if (eval(My.Pick.ntip.typeList[_index][i][0]))
 {
 if (My.Pick.ntip.typeList[_index][i][1])
 {
 if (eval(My.Pick.ntip.typeList[_index][i][1])) <-- 여기가 750 이네요...
 return 1;
 else if (_result == 0 && !_identified)
 _result = -1;
 }
 else
 return 1;
 }
 }
 }