13차 이니 질문입니다.
분류
질문
조회 수
319
추천 수
0
CooLManiA™
https://tradia.me/diablo2/diablo2_faq/374581
아이템 설정을요 만약에
//##########################################################################
// 아이템 설정하기
//==========================================================================
// 하급 아이템이니
//-----------------
NTConfig_NIPFilePath.push("normal/craft.nip");
NTConfig_NIPFilePath.push("normal/magic_rare.nip");
NTConfig_NIPFilePath.push("normal/normal.nip");
NTConfig_NIPFilePath.push("normal/set.nip");
NTConfig_NIPFilePath.push("normal/unique.nip");
// 중급 아이템이니
//-----------------
NTConfig_NIPFilePath.push("advance/craft.nip");
NTConfig_NIPFilePath.push("advance/magic_rare.nip");
NTConfig_NIPFilePath.push("advance/normal.nip");
NTConfig_NIPFilePath.push("advance/set.nip");
NTConfig_NIPFilePath.push("advance/unique.nip");
// 상급 아이템이니
//-----------------
NTConfig_NIPFilePath.push("extreme/craft.nip");
NTConfig_NIPFilePath.push("extreme/magic_rare.nip");
NTConfig_NIPFilePath.push("extreme/normal.nip");
NTConfig_NIPFilePath.push("extreme/set.nip");
NTConfig_NIPFilePath.push("extreme/unique.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");
NTConfig_NIPFilePath.push("MyCubing.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_NIPFilePath.push("MyCubing.nip");
}
이렇게 주석을 다 풀어놓았다면요.
어느쪽 이니로 아이템을 줍는건가요?
만약에 샤코가 상급에서는 디팬 120, 흰여울님 유니크쪽에서는 샤코가 130 이런식으로 설정했다면요.
120샤코가 나오면 버리는건가요? 창고에 넣어두는 건가요?

