20차 봇 큐빙 질문입니다.
분류
질문
조회 수
1,754
추천 수
0
Mycubing.nip
[Name] == FlawlessAmethyst %3 @
[Name] == FlawlessTopaz %3 @
[Name] == FlawlessSapphire %3 @
[Name] == FlawlessEmerald %3 @
[Name] == FlawlessRuby %3 @
[Name] == FlawlessDiamond %3 @
[Name] == FlawlessSkull %3 @
[Name] == PerfectAmethyst %1 @
[Name] == PerfectTopaz %1 @
[Name] == PerfectSapphire %1 @
[Name] == PerfectEmerald %1 @
[Name] == PerfectRuby %1 @
[Name] == PerfectDiamond %1 @
[Name] == PerfectSkull %1 @
케릭이니 설정은
NTConfig_NIPFilePath.push("MyCubing.nip"); // 큐빙용 아이템이니
//NTConfig_NIPFilePath.push("MyShopBot.nip"); // 오리지널 샵봇용 아이템이니
//##########################################################################
// 큐빙 설정하기
//---------------
// 주의: 큐빙에 사용되는 모든 아이템은 '@'를 반드시 설정해야 합니다.
// 참고: 설정한 순서대로 큐빙합니다.
//==========================================================================
MyConfig_CubingList.push("보석_큐빙"); // 설정: 큐빙할 보석 설정하기
MyConfig_CubingList.push("룬_큐빙"); // 설정: 큐빙할 룬 설정하기
MyConfig_CubingList.push("크래프트_큐빙"); // 설정: 큐빙할 크래프트 설정하기
MyConfig_CubingList.push("매직_아이템_큐빙"); // 설정: 큐빙할 매직 아이템 설정하기
//MyConfig_CubingList.push("레어_아이템_큐빙"); // 설정: 큐빙할 레어 아이템 설정하기
//MyConfig_CubingList.push("노말_아이템_큐빙"); // 설정: 큐빙할 노말 아이템 설정하기
MyConfig_CubingList.push("매직_링_큐빙");
MyConfig_CubingList.push("매직_아뮬렛_큐빙");
//MyConfig_CubingList.push("정수_큐빙"); // 참고: 아이템이니에 설정한 보관할 아이템의 개수(%) 이상을 보관 중이면 큐빙을 하지 않습니다.
//MyConfig_CubingList.push("활력포션_큐빙"); // 주의: '아이템 설정하기'의 '포션 주워 보관하기'에서 활력포션과 대량의 활력포션을 보관하도록 설정해야 큐빙합니다. * 참고: 대량의 활력포션을 설정치 이상 보관 중이면 큐빙을 하지 않습니다.
//MyConfig_CubingList.push("룬워드_아이템_만들기"); // 설정: 만들 룬워드 아이템 설정하기
//##########################################################################
// 큐빙할 보석 설정하기
//----------------------
MyConfig_CubingGemList.push(560); // Flawless Amethyst %3 @
MyConfig_CubingGemList.push(565); // Flawless Topaz %3 @
MyConfig_CubingGemList.push(570); // Flawless Saphire %3 @
MyConfig_CubingGemList.push(575); // Flawless Emerald %3 @
MyConfig_CubingGemList.push(580); // Flawless Ruby %3 @
MyConfig_CubingGemList.push(585); // Flawless Diamond %3 @
MyConfig_CubingGemList.push(600); // Flawless Skull %3 @
// 보석 설정하기
//---------------
// MyConfig_CubingMagicGemList.push([보석 ClassID, 보관 개수])
// 보관 개수: 보관 중인 보석이 설정치 이상일 때만 큐빙에 사용합니다.
// 주의: 보석을 1개 이상 설정합니다.
//==========================================================================
MyConfig_CubingMagicGemList.push([561, 1]); // Perfect Amethyst @
MyConfig_CubingMagicGemList.push([566, 1]); // Perfect Topaz @
MyConfig_CubingMagicGemList.push([571, 1]); // Perfect Saphire @
MyConfig_CubingMagicGemList.push([576, 1]); // Perfect Emerald @
MyConfig_CubingMagicGemList.push([581, 1]); // Perfect Ruby @
MyConfig_CubingMagicGemList.push([586, 1]); // Perfect Diamond @
MyConfig_CubingMagicGemList.push([601, 1]); // Perfect Skull @
// 가지고 다닐 보석 개수 설정하기
//--------------------------------
MyConfig_CatchShrineGemHave = 4;
// 가지고 다닐 보석 설정하기
//---------------------------
// 참고: 설정한 순서대로 가지고 다닙니다.
MyConfig_CatchShrineGemList.push(560); // Flawless Amethyst
MyConfig_CatchShrineGemList.push(565); // Flawless Topaz
MyConfig_CatchShrineGemList.push(570); // Flawless Saphire
MyConfig_CatchShrineGemList.push(575); // Flawless Emerald
MyConfig_CatchShrineGemList.push(580); // Flawless Ruby
MyConfig_CatchShrineGemList.push(585); // Flawless Diamond
MyConfig_CatchShrineGemList.push(600); // Flawless Skull
이렇게 설정이 되어 있습니다.
일단 보석 큐빙을 하지않고 그러니 매직큐빙이라든지 크래프트를 하지 않는 것 같습니다.
다른분들 글 읽어보고 설정하는데도 안되네요...
어디가 문제 일까요?

