Skip to content

바알참 큐빙 설정했는데요.

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

어제 저녁에 돌려놓고 아침에 확인했는데,, 보석이 생각보다 좀 많이 있는거 같아..

이니 확인 한 번 해 보려 합니다. 이상 없는지 검수(??) 한 번 부탁드립니다.

아래 참조 바랍니다.(참고로 큐빙도 하고 있습니다.)



//##########################################################################
// 큐빙 설정하기
//==========================================================================
MyConfig_isCubingGem = [true, false]; // [보석 큐빙하기, 아이템 로그] * 설정: 큐빙할 보석 설정하기
MyConfig_isCubingRune = [true, false]; // [룬 큐빙하기, 아이템 로그] * 설정: 큐빙할 룬 설정하기
MyConfig_isCubingCrafted = true; // 크래프트 큐빙 * 설정: 큐빙할 크래프트 설정하기
MyConfig_isCubingMagic = true; // 매직 아이템 큐빙하기 * 설정: 큐빙할 매직 아이템 설정하기
MyConfig_isCubingRare = false; // 레어 아이템 큐빙하기 * 설정: 큐빙할 레어 아이템 설정하기
MyConfig_isCubingNormal = false; // 노멀 아이템 큐빙하기 * 설정: 큐빙할 노멀 아이템 설정하기
MyConfig_isCubingMagicRing = false; // 매직 링 3개 큐빙하기
MyConfig_isCubingMagicAmulet = false; // 매직 아뮬렛 3개 큐빙하기
MyConfig_isCubingEssence = false; // 정수 큐빙하기

MyConfig_isMakeRuneword = false; // 룬워드 아이템 만들기 * 설정: 만들 룬워드 아이템 설정하기

MyConfig_isPickUpItem = true; // 아이템 주워 보관하기 * 설정: 주워 보관할 아이템 설정하기
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



//##########################################################################
// 큐빙할 매직 아이템 설정하기
//-----------------------------
// 주의: "MyConfig_CubingMagic"가 "아이템 이니(scripts/NTBot/item_configs/*.nip)"에 설정된 아이템이면 큐빙을 하지 않습니다.
// 큐빙 후 "아이템 이니(scripts/NTBot/item_configs/*.nip)" 또는 "주워 보관할 아이템 설정하기"에 설정된 아이템이 아니면 버립니다.
// 참고: "매직 아이템 ClassID"가 "캐릭터설정파일(scripts/NTBot/char_configs/NTConfig_클래스_캐릭터이름.ntl)"에서 "NTConfig_Columns"를 0으로 설정한 곳에 있으면 큐빙을 하지 않습니다.
//==========================================================================
// 매직 아이템 설정하기
// MyConfig_CubingMagic = 매직 아이템 ClassID
// 주의: 매직 아이템을 1개만 선택합니다.
//---------------------------------------
//MyConfig_CubingMagic = 603; // Small Charm
//MyConfig_CubingMagic = 604; // Large Charm
MyConfig_CubingMagic = 605; // Grand Charm
//MyConfig_CubingMagic = 447; // Monarch

// 보석 설정하기
// 주의: 보석을 반드시 1개 이상 선택합니다.
//------------------------------------------
MyConfig_CubingMagicGemList.push(586); // Perfect Diamond
MyConfig_CubingMagicGemList.push(561); // Perfect Amethyst
MyConfig_CubingMagicGemList.push(571); // Perfect Saphire
MyConfig_CubingMagicGemList.push(566); // Perfect Topaz
MyConfig_CubingMagicGemList.push(581); // Perfect Ruby
MyConfig_CubingMagicGemList.push(576); // Perfect Emerald
MyConfig_CubingMagicGemList.push(601); // Perfect Skull



//##########################################################################
// 주워 보관할 아이템 설정하기
//-----------------------------
// MyConfig_PickUpItemList.push([아이템 ClassID])
// MyConfig_PickUpItemList.push([아이템 ClassID, 보관할 개수])
// MyConfig_PickUpItemList.push([아이템 ClassID, 보관할 개수, 아이템 퀄리티])
// MyConfig_PickUpItemList.push([아이템 ClassID, 보관할 개수, 아이템 퀄리티, 아이템 레벨])
// MyConfig_PickUpItemList.push([아이템 ClassID, 보관할 개수, 아이템 퀄리티, 아이템 레벨, 에테리얼])
// MyConfig_PickUpItemList.push([아이템 ClassID, 보관할 개수, 아이템 퀄리티, 아이템 레벨, 에테리얼, 소켓 수])
// 참고: 아이템 이니(scripts/NTBot/item_configs/*.nip) 설정에 해당되지 않는 아이템들(안줍거나 팔거나 버리는 것) 중에서 여기에 설정한 아이템들을 주워 보관합니다.
// 설정하지 않거나 보관할 개수 0, 아이템 퀄리티 0, 아이템 레벨 0, 에테리얼 0, 소켓 수 9는 각각의 검사를 생략합니다.
// 보관할 개수 : 아이템 이니(scripts/NTBot/item_configs/*.nip) 설정에 해당되는 아이템은 보관할 개수에서 제외됩니다.
// 아이템 퀄리티: 1 = Low Quality, 2 = Normal, 3 = Superior, 4 = Magic, 5 = Set, 6 = Rare, 7 = Unique, 8 = Crafted, 9 = Tempered
// 아이템 레벨 : 설정한 레벨 이상의 아이템을 줍습니다.
// 아이템 레벨에 100을 더해서 설정하면 "공식1"이 적용됩니다. "공식1": int(케릭터 레벨 / 2) + int(아이템 레벨 / 2)
// 예) 90은 아이템 레벨 90이상 줍습니다.
// 190은 "공식1"을 적용하여 줍습니다.(캐릭터 레벨이 90이라면 아이템 레벨 90이상 줍습니다. 95라면 86이상 줍습니다)
// 에테리얼 : 0 = 모두, 1 = 에테리얼, 2 = 노에테리얼
//==========================================================================
//MyConfig_PickUpItemList.push([557, 1]); // Chipped Amethyst
MyConfig_PickUpItemList.push([562, 1]); // Chipped Topaz
//MyConfig_PickUpItemList.push([567, 1]); // Chipped Saphire
//MyConfig_PickUpItemList.push([572, 1]); // Chipped Emerald
//MyConfig_PickUpItemList.push([577, 1]); // Chipped Ruby
//MyConfig_PickUpItemList.push([582, 1]); // Chipped Diamond
//MyConfig_PickUpItemList.push([597]); // Chipped Skull

//MyConfig_PickUpItemList.push([558, 1]); // Flawed Amethyst
//MyConfig_PickUpItemList.push([563, 1]); // Flawed Topaz
//MyConfig_PickUpItemList.push([568, 1]); // Flawed Saphire
//MyConfig_PickUpItemList.push([573, 1]); // Flawed Emerald
//MyConfig_PickUpItemList.push([578, 1]); // Flawed Ruby
//MyConfig_PickUpItemList.push([583, 1]); // Flawed Diamond
//MyConfig_PickUpItemList.push([598]); // Flawed Skull

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

MyConfig_PickUpItemList.push([560]); // Flawless Amethyst
MyConfig_PickUpItemList.push([565]); // Flawless Topaz
MyConfig_PickUpItemList.push([570]); // Flawless Saphire
MyConfig_PickUpItemList.push([575]); // Flawless Emerald
MyConfig_PickUpItemList.push([580]); // Flawless Ruby
MyConfig_PickUpItemList.push([585]); // Flawless Diamond
MyConfig_PickUpItemList.push([600]); // Flawless Skull

MyConfig_PickUpItemList.push([561,3]); // Perfect Amethyst
MyConfig_PickUpItemList.push([566,3]); // Perfect Topaz
MyConfig_PickUpItemList.push([571,3]); // Perfect Saphire
MyConfig_PickUpItemList.push([576,3]); // Perfect Emerald
MyConfig_PickUpItemList.push([581,3]); // Perfect Ruby
MyConfig_PickUpItemList.push([586,3]); // Perfect Diamond
MyConfig_PickUpItemList.push([601,3]); // Perfect Skull

//MyConfig_PickUpItemList.push([610]); // El Rune
//MyConfig_PickUpItemList.push([611]); // Eld Rune
//MyConfig_PickUpItemList.push([612]); // Tir Rune
//MyConfig_PickUpItemList.push([613]); // Nef Rune
//MyConfig_PickUpItemList.push([614]); // Eth Rune
//MyConfig_PickUpItemList.push([615]); // Ith Rune
//MyConfig_PickUpItemList.push([616,3]); // Tal Rune
MyConfig_PickUpItemList.push([617,3]); // Ral Rune
//MyConfig_PickUpItemList.push([618]); // Ort Rune
//MyConfig_PickUpItemList.push([619,3]); // Thul Rune
MyConfig_PickUpItemList.push([620,3]); // Amn Rune
MyConfig_PickUpItemList.push([621,2]); // Sol Rune
//MyConfig_PickUpItemList.push([622]); // Shael Rune
//MyConfig_PickUpItemList.push([623]); // Dol Rune
//MyConfig_PickUpItemList.push([624]); // Hel Rune
//MyConfig_PickUpItemList.push([625]); // Io Rune
//MyConfig_PickUpItemList.push([626]); // Lum Rune
//MyConfig_PickUpItemList.push([627]); // Ko Rune
//MyConfig_PickUpItemList.push([628]); // Fal Rune
//MyConfig_PickUpItemList.push([629]); // Lem Rune

//MyConfig_PickUpItemList.push([647]); // Key of Terror
//MyConfig_PickUpItemList.push([648]); // Key of Hate
//MyConfig_PickUpItemList.push([649]); // Key of Destruction

//MyConfig_PickUpItemList.push([654, 1]); // Twisted Essence of Suffering
//MyConfig_PickUpItemList.push([655, 1]); // Charged Essense of Hatred
//MyConfig_PickUpItemList.push([656, 1]); // Burning Essence of Terror
//MyConfig_PickUpItemList.push([657, 1]); // Festering Essence of Destruction

// 흰여울님의 크래프트 큐빙 자료를 바탕으로 설정하였습니다.
//----------------------------------------------------------
//MyConfig_PickUpItemList.push([603, 2, 4, 94]); // Small Charm
//MyConfig_PickUpItemList.push([604, 1, 4, 99]); // Large Charm
//MyConfig_PickUpItemList.push([605, 1, 4, 94]); // Grand Charm
//MyConfig_PickUpItemList.push([447, 1, 4, 99]); // Monarch ; Magic Cubing

//MyConfig_PickUpItemList.push([418, 1, 6]); // Circlet
//MyConfig_PickUpItemList.push([419, 1, 6]); // Coronet
//MyConfig_PickUpItemList.push([420, 1, 6]); // Tiara
//MyConfig_PickUpItemList.push([421, 1, 6]); // Diadem

MyConfig_PickUpItemList.push([520, 2, 4, 194]); // Amulet : int(charlv/2) + int(input ilvl/2) = 90(ilvl)
MyConfig_PickUpItemList.push([522, 2, 4, 186]); // Ring : int(charlv/2) + int(input ilvl/2) = 86(ilvl)
MyConfig_PickUpItemList.push([643, 2]); // Jewel

//MyConfig_PickUpItemList.push([381, 1, 4, 178]); // Sharkskin Gloves : int(charlv/2) + int(input ilvl/2) = 78(ilvl)
//MyConfig_PickUpItemList.push([451, 1, 4, 179]); // Vampirebone Gloves : int(charlv/2) + int(input ilvl/2) = 79(ilvl)

//MyConfig_PickUpItemList.push([382, 1, 4, 179]); // Heavy Bracers : int(charlv/2) + int(input ilvl/2) = 79(ilvl)
//MyConfig_PickUpItemList.push([452, 1, 4, 179]); // Vambraces : int(charlv/2) + int(input ilvl/2) = 79(ilvl)

//MyConfig_PickUpItemList.push([354, 1, 4, 184]); // Casque : int(charlv/2) + int(input ilvl/2) = 84(ilvl)
//MyConfig_PickUpItemList.push([424, 1, 4, 184]); // Armet : int(charlv/2) + int(input ilvl/2) = 84(ilvl)

//MyConfig_PickUpItemList.push([391, 1, 4, 185]); // Sharkskin Belt : int(charlv/2) + int(input ilvl/2) = 85(ilvl)
//MyConfig_PickUpItemList.push([461, 1, 4, 185]); // Vampirefang Belt : int(charlv/2) + int(input ilvl/2) = 85(ilvl)

//MyConfig_PickUpItemList.push([392, 1, 4, 185]); // Mash Belt : int(charlv/2) + int(input ilvl/2) = 85(ilvl)
//MyConfig_PickUpItemList.push([462, 1, 4, 185]); // Mithril Coil : int(charlv/2) + int(input ilvl/2) = 85(ilvl)

//MyConfig_PickUpItemList.push([388, 1, 4, 185]); // Battle Boots : int(charlv/2) + int(input ilvl/2) = 85(ilvl)
//MyConfig_PickUpItemList.push([458, 1, 4, 185]); // Mirrored Boots : int(charlv/2) + int(input ilvl/2) = 85(ilvl)

//MyConfig_PickUpItemList.push([447, 1, 4, 182]); // Monarch ; Crafted Cubing : int(charlv/2) + int(input ilvl/2) = 82(ilvl)


//##########################################################################
// 버릴 아이템 설정하기
//----------------------
// MyConfig_DropItemList.push([아이템 ClassID, 보관할 개수])
// MyConfig_DropItemList.push([아이템 ClassID, 보관할 개수, 아이템 퀄리티])
// 참고: 설정하지 않거나 아이템 퀄리티 0은 아이템 퀄리티 검사를 생략합니다.
// 아이템 퀄리티 3이하는 아이템 레벨과 상관없이 버리고 4이상은 아이템 레벨이 낮은 것부터 버립니다.
// 주의: 아이템 퀄리티를 설정하지 않거나 0, 1, 2, 3으로 설정 할 경우, 아이템 이니(scripts/NTBot/item_configs/*.nip)와 비교하지 않고 설정한대로 무조건 버립니다.
//==========================================================================
//MyConfig_DropItemList.push([,]);
//MyConfig_DropItemList.push([,,]);
}
  • 슈토 2010.08.14 08:42
    바알 그랜드 참을 돌리게 할려고 하신것 같은데.. //MyConfig_PickUpItemList.push([605, 1, 4, 94]); // Grand Charm 이 부분이 주석 처리 되어있네요..주석 해제 해주시고..바알참만 돌리실꺼라면.. 99로 바꿔주셔야;
  • 쪼아 2010.08.14 09:08
    보관할 보석숫자 갯수를 MyConfig_PickUpItemList.push([561,3]); // Perfect Amethyst MyConfig_PickUpItemList.push([561, 3]); // Perfect Amethyst 띄어쓰기 해주시구요 아이템이니에서 보석 주석해주세요 주석해제 되어있으면 갯수 설정해도 다보관해버립니다
  • 난장[나눔] 2010.08.14 09:11
    아.. .슈토님... 쪼아님.. 답변 감사합니다. 슈토님. // 흰여울님의 크래프트 큐빙 자료를 바탕으로 설정하였습니다. 부분의 주석은 처리하지 않아도 되죠?
  • 슈토 2010.08.14 09:17
    네..그 부분은..상관없습니다;
  • 난장[나눔] 2010.08.14 09:42
    넵.. 슈토님.. 수고하세요

번호 분류 제목 글쓴이 날짜 조회
공지   게시판 푸시 알림 / 통합 앱 서비스 32 file 트디개발자 2023.09.20 886.3k
공지 안내 D2NT 처음 이용하는 분은 튜토리얼을 참고바랍니다. 135 우녕자 2014.12.21 50.8k
공지   맨땅 초보자 가이드 604 file 뮤리아 2020.10.16 1004.2k
공지   카카오톡 1:1 채팅방 만드는 법 103 트디개발자 2018.05.20 427.7k
8831 질문 창고지기 대기가 로그인 창인가요? 1 capis 2010.08.13 282
8830 질문 특정 아이템만 먹으면 봇이 멍때립니다 3 stormos 2010.08.13 1.7k
8829 질문 (9차)쫄봇이 기사가 사냥하는곳마다 따라가게 할수있나요 2 phd216 2010.08.13 985
8828 기타 엘리드루로 봇을 돌려보려고 하는데요 1 다비드_비야 2010.08.13 567
8827 질문 9차버전) 프렌치바바 문의드립니다. 1 온양 2010.08.13 563
8826 질문 쫄봇 설정 관련 질문좀요 2 우미 2010.08.13 327
8825 질문 어베던을 사냥하고 싶습니다. 4 光速바바 2010.08.13 634
8824 질문 오리 활아마 스킬지정을 어떻게 하나요? 1 비타미노 2010.08.13 1.8k
8823 설명 디아 바알런 쫄봇 설정하기 1 (LeechBotMaster와 LeechBot 이용) 1 거북맥 2010.08.13 1.3k
8822 질문 완료)날아다녀님 9차 수정 팔라딘 질문드립니다. 2 렛츠고열이9 2010.08.13 997
8821 질문 4봇->6봇으로 늘리려 합니다 2 해커스토익 2010.08.13 347
8820 기타 큐빙하면 인벤 안모자라나요? 1 치맥 2010.08.13 442
8819 질문 7차) 8봇 작동시에 2봇이 한 방에서 만나면 튕기네요 4 랜보54 2010.08.14 1.4k
8818 질문 캐릭이니 크랩질문이요~ 1 Gentle♥Min 2010.08.14 239
8817 질문 [9차] 특정 아이템 먹으면 멍때림 현상 2 stormos 2010.08.14 569
> 질문 바알참 큐빙 설정했는데요. 5 난장[나눔] 2010.08.14 1.1k
8815 질문 봇이 이런 에러가 뜨면서 멈추네요,,ㅠ; 7 -데빌- 2010.08.14 315
8814 질문 죽었을때 시체를 먹게 할 수는 없을까요 ?? 2 가츠시 2010.08.14 596
8813 질문 8차버젼 크랩 질문입니다. 2 벤치프레스 2010.08.14 1.9k
8812 기타 봇돌이 렙 몇쯤에 돌리시나요? 6 포핸즈 2010.08.14 476