아이템을 멋데로 주워오는것에 대한 질문입니다
분류
질문
조회 수
1,652
추천 수
0
어제 질문글만 던져놓고 오늘 확인했는데(바..바빠서)
어떤분이 지적해주시길 아이템이니를 2개이상 쓴다고 하셔서 케릭 아이템이니설정부분을 올립니다
//##########################################################################
// 아이템 이니 설정하기
//==========================================================================
// 하급 아이템 이니
//------------------
//NTConfig_NIPFilePath.push("normal/normal.nip");
//NTConfig_NIPFilePath.push("normal/magic_rare.nip");
//NTConfig_NIPFilePath.push("normal/set.nip");
//NTConfig_NIPFilePath.push("normal/unique.nip");
//NTConfig_NIPFilePath.push("normal/craft.nip");
// 중급 아이템 이니
//------------------
//NTConfig_NIPFilePath.push("advance/normal.nip");
//NTConfig_NIPFilePath.push("advance/magic_rare.nip");
//NTConfig_NIPFilePath.push("advance/set.nip");
//NTConfig_NIPFilePath.push("advance/unique.nip");
//NTConfig_NIPFilePath.push("advance/craft.nip");
// 상급 아이템 이니
//------------------
NTConfig_NIPFilePath.push("extreme/normal.nip");
NTConfig_NIPFilePath.push("extreme/magic_rare.nip");
NTConfig_NIPFilePath.push("extreme/set.nip");
NTConfig_NIPFilePath.push("extreme/unique.nip");
NTConfig_NIPFilePath.push("extreme/craft.nip");
// 고급 아이템 이니 * 흰여울님의 아이템 이니 자료입니다.
//-------------------------------------------------------
if (me.gametype)
{ // 확장용 아이템 이니
NTConfig_NIPFilePath.push("gems.nip");
NTConfig_NIPFilePath.push("charmsjewels.nip");
NTConfig_NIPFilePath.push("crafteds.nip");
NTConfig_NIPFilePath.push("keys.nip");
NTConfig_NIPFilePath.push("magics.nip");
NTConfig_NIPFilePath.push("potions.nip");
NTConfig_NIPFilePath.push("rares.nip");
NTConfig_NIPFilePath.push("ringsamulets.nip");
NTConfig_NIPFilePath.push("runes.nip");
NTConfig_NIPFilePath.push("runewords.nip");
NTConfig_NIPFilePath.push("sets.nip");
NTConfig_NIPFilePath.push("uniques.nip");
NTConfig_NIPFilePath.push("whites.nip");
}
else
{ // 오리지널용 아이템 이니
NTConfig_NIPFilePath.push("gems_ori.nip");
NTConfig_NIPFilePath.push("magics_ori.nip");
NTConfig_NIPFilePath.push("potions.nip");
NTConfig_NIPFilePath.push("rares_ori.nip");
NTConfig_NIPFilePath.push("ringsamulets_ori.nip");
NTConfig_NIPFilePath.push("sets_ori.nip");
NTConfig_NIPFilePath.push("uniques_ori.nip");
NTConfig_NIPFilePath.push("whites_ori.nip");
//NTConfig_NIPFilePath.push("MyShopBot.nip");
}
NTConfig_SnagRange = 60; // 사냥 후 아이템을 확인하여 주울 시야
이게 제 케릭 아이템이니설정부분이고 전 익스트림만 쓴다고 생각했는데 잘못된건가요
정말로 2개이상 아이템이니를 쓰고 있는건가요

