Skip to content

알바 돌리면서 보석큐빙도 하고 싶은데 자꾸 보관만 해요.

분류 질문 조회 수 1,676 추천 수 0

캐릭설정파일(char_configs)에서 아래와 같이 설정하고 봇을 돌려봤는데 그냥 보석을 보관함에 저장만 합니다.
이거 왜 이런거죠? 큐브 위치가 잘못되어서 그런건가요? 캐릭인벤에 큐브를 갖다놔봐도 소용이 없네요.
혹시 자동큐빙할 땐 이니에서 보석을 주석처리해야 하는건지요.





 //##########################################################################
 // 큐빙 설정하기
 //---------------
 // 참고: 설정한 순서대로 큐빙합니다.
 //==========================================================================
 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_isMakeRuneword = false; // 룬워드 아이템 만들기 * 설정: 만들 룬워드 아이템 설정하기

 MyConfig_isPickUpItem = false; // 아이템 주워 보관하기 * 설정: 주워 보관할 아이템 설정하기
 MyConfig_isDropItem = false; // 아이템 버리기 * 설정: 버릴 아이템 설정하기


 //##########################################################################
 // 큐빙할 보석 설정하기
 //----------------------
 // 주의: 큐빙 후 "아이템이니(scripts/NTBot/item_configs/*.nip)" 또는 "주워 보관할 아이템 설정하기"에 설정된 아이템이 아니면 버립니다.
 //==========================================================================
 //MyConfig_CubingGemList.push(557); // Chipped Amethyst
 //MyConfig_CubingGemList.push(562); // Chipped Topaz
 //MyConfig_CubingGemList.push(567); // Chipped Saphire
 //MyConfig_CubingGemList.push(572); // Chipped Emerald
 //MyConfig_CubingGemList.push(577); // Chipped Ruby
 //MyConfig_CubingGemList.push(582); // Chipped Diamond
 //MyConfig_CubingGemList.push(597); // Chipped Skull

 //MyConfig_CubingGemList.push(558); // Flawed Amethyst
 //MyConfig_CubingGemList.push(563); // Flawed Topaz
 //MyConfig_CubingGemList.push(568); // Flawed Saphire
 //MyConfig_CubingGemList.push(573); // Flawed Emerald
 //MyConfig_CubingGemList.push(578); // Flawed Ruby
 //MyConfig_CubingGemList.push(583); // Flawed Diamond
 //MyConfig_CubingGemList.push(598); // Flawed Skull

 MyConfig_CubingGemList.push(559); // Normal Amethyst
 MyConfig_CubingGemList.push(564); // Normal Topaz
 MyConfig_CubingGemList.push(569); // Normal Saphire
 MyConfig_CubingGemList.push(574); // Normal Emerald
 MyConfig_CubingGemList.push(579); // Normal Ruby
 MyConfig_CubingGemList.push(584); // Normal Diamond
 //MyConfig_CubingGemList.push(599); // Normal Skull

 //MyConfig_CubingGemList.push(560); // Flawless Amethyst
 //MyConfig_CubingGemList.push(565); // Flawless Topaz
 //MyConfig_CubingGemList.push(570); // Flawless Saphire
 //MyConfig_CubingGemList.push(575); // Flawless Emerald
 //MyConfig_CubingGemList.push(580); // Flawless Ruby
 //MyConfig_CubingGemList.push(585); // Flawless Diamond
 //MyConfig_CubingGemList.push(600); // Flawless Skull
  • Gods_HacK 2010.08.21 02:11
    // 참고: 설정한 순서대로 큐빙합니다. //========================================================================== 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_isMakeRuneword = false; // 룬워드 아이템 만들기 * 설정: 만들 룬워드 아이템 설정하기 MyConfig_isPickUpItem = [[true]]; // 아이템 주워 보관하기 * 설정: 주워 보관할 아이템 설정하기 MyConfig_isDropItem = false; // 아이템 버리기 * 설정: 버릴 아이템 설정하기 차암 큐빙하시려는거죠? 매직아이템 앞에 주석제가하심돼고 상급보석들 이니에는 설정안하고 따로 줍게하려면 주워보관할 아이템 설정하시고 위에 [[]]안처럼 true로 해주심돼요.. [[]]는 잘보이게 하려고 쓴거에요
  • 라니 2010.08.21 02:27
    보석큐빙을 하실려면 해당 보석종류는 아이템이니에서 주석처리 해주셔야 합니다. 그리고 아래도 false를 true로 바꾸시구요~ MyConfig_isPickUpItem = false; // 아이템 주워 보관하기 * 설정: 주워 보관할 아이템 설정하기 "주워 보관할 아이템" 설정하기에서 반드시 해당보석 구문에 주석해제 해놓으세요^^;
  • Bravo 2010.08.21 08:35
    큐빙시 사용할 보석도 설정해주세요..^^
  • 오가리 2010.08.21 11:54
    퍼퍽트보석으로 큐빙하시는건가요 ? 퍼퍽트보석이 필요하시면, 노말은 주석처리하시구요 //MyConfig_CubingGemList.push(559); // Normal Amethyst //MyConfig_CubingGemList.push(564); // Normal Topaz //MyConfig_CubingGemList.push(569); // Normal Saphire //MyConfig_CubingGemList.push(574); // Normal Emerald //MyConfig_CubingGemList.push(579); // Normal Ruby //MyConfig_CubingGemList.push(584); // Normal Diamond //MyConfig_CubingGemList.push(599); // Normal Skull 상급보석 주석 해제 하세요 MyConfig_CubingGemList.push(560); // Flawless Amethyst MyConfig_CubingGemList.push(565); // Flawless Topaz MyConfig_CubingGemList.push(570); // Flawless Saphire MyConfig_CubingGemList.push(575); // Flawless Emerald MyConfig_CubingGemList.push(580); // Flawless Ruby MyConfig_CubingGemList.push(585); // Flawless Diamond MyConfig_CubingGemList.push(600); // Flawless Skull
  • 절망속고뇌 2010.08.22 17:22
    답변주신 모든 분들 정말 고맙습니다. ^^ 덕분에 지금 잘 되고 있어요.

번호 분류 제목 글쓴이 날짜 조회
공지   게시판 푸시 알림 / 통합 앱 서비스 32 file 트디개발자 2023.09.20 892.1k
공지 안내 D2NT 처음 이용하는 분은 튜토리얼을 참고바랍니다. 135 우녕자 2014.12.21 50.9k
공지   맨땅 초보자 가이드 604 file 뮤리아 2020.10.16 1005.1k
공지   카카오톡 1:1 채팅방 만드는 법 103 트디개발자 2018.05.20 427.9k
8691 질문 nt붓 9차수정본 CD키 중복시 설정 3 왕초™ 2010.08.20 1.1k
8690 안내 2계정 블럭당했네요.ㅜㅜ 8 식이 2010.08.20 1.5k
8689 질문 날아다녀님 10차 오리지날 붓순이..아이템 설정에 관합니다. 6 AmSalx삼스x 2010.08.20 1.8k
8688 질문 날아다녀님 7차 크랩아이템을 창고에 넣지않고 인벤에 보관합니다.. 5 미켈란젤로 2010.08.20 380
8687 질문 날아다녀님 10차 햄딘봇 오류질문드립니다. 2 디아초보여 2010.08.21 1.7k
> 질문 알바 돌리면서 보석큐빙도 하고 싶은데 자꾸 보관만 해요. 5 절망속고뇌 2010.08.21 1.7k
8685 질문 쫄봇질문 한가지하겠습니다. ^^; 2 디아블로ll 2010.08.21 262
8684 질문 우버 메시지 false로 했는데 우버가 떴을 경우 2 helidd 2010.08.21 741
8683 질문 [10차] 햄딘으로 바알 잡을때 피할 몹을 어떻게 설정하죠? 4 Devilish 2010.08.21 295
8682 질문 [10차] 방생성 실패시 105초 대기... 9 동화나라왕자 2010.08.21 1.4k
8681 질문 10차) 날러다녀님 버스봇 시간설정 질문드립니다. 1 온양 2010.08.21 592
8680 질문 안녕하세요 이니에 대한 질문입니다. 3 던진도너스 2010.08.21 491
8679 질문 트라빈걸 몹을 전부다 잡지 않습니다;; 4 PrOmiSeSecReT 2010.08.21 363
8678 기타 수수자벨마로 봇 돌리시는 분들~ 7 다비드_비야 2010.08.21 992
8677 질문 [10차]재료템을 주울때.. 1 LivingDeath 2010.08.21 910
8676 질문 날아다녀님 10차 - 아뮬, 링 크래프트 관련 질문드립니다. 3 Garden 2010.08.21 473
8675 질문 날아다녀님 9차 수정버전 에러 메시지 질문입니다. 1 영웅보컬[안산] 2010.08.21 1.7k
8674 질문 참 돌리기에서.. 스몰참 숨렙에 대한 질문이에요~ 4 고양이22 2010.08.21 1.5k
8673 질문 날아다녀님 9차수정 봇을 사용중입니다. 3 디아블로ll 2010.08.21 402
8672 질문 유닉 다뎀 이니를 알고 싶습니다. 4 [CrazY]청개구리 2010.08.21 1.7k