Skip to content

몇차인지는 기억이 잘 안나고요, script/history.txt에 4.2 라고 적혀 있습니다.
바알표 스몰/그랜드참을 큐빙하려고 여기저기 올라온 강좌를 토대로 아래 처럼 설정을 했습니다.
캐릭터설정파일에 당연히 했고요.


=문제점=

바닥에 상급토파즈가 떨어졌는데, 줍지를 않습니다. 혹시나 해서 수동으로 인벤에 넣었더니, 상점에 팔아버립니다.


=설정파일 내용

 MyConfig_CatchGemShrine = true; // 보석의 성소

 // 가지고 다닐 보석 개수 설정하기
 //--------------------------------
 MyConfig_GemShrineHave = 1;

 //##########################################################################
 // 큐빙 설정하기
 //==========================================================================
 MyConfig_isCubingGem = [true, true]; // [보석 큐빙하기, 아이템 로그] * 설정: 큐빙할 보석 설정하기
 MyConfig_isCubingMagic = true; // 매직 아이템 큐빙하기 * 설정: 큐빙할 매직 아이템 설정하기

일단 나머지는 다 false로 되어 있습니다.

----

큐빙할 보석은 아래 처럼 했습니다.

//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 = 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([560]); // Flawless Amethyst
 MyConfig_PickUpItemList.push([565,3]); // Flawless Topaz
 MyConfig_PickUpItemList.push([570,3]); // Flawless Saphire
 //MyConfig_PickUpItemList.push([575]); // Flawless Emerald
 MyConfig_PickUpItemList.push([580,3]); // Flawless Ruby
 //MyConfig_PickUpItemList.push([585]); // Flawless Diamond
 MyConfig_PickUpItemList.push([600,3]); // Flawless Skull

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

 MyConfig_PickUpItemList.push([603, 2, 4, 94]); // Small Charm
 //MyConfig_PickUpItemList.push([604, 1, 4, 99]); // Large Charm
 MyConfig_PickUpItemList.push([605, 2, 4, 94]); // Grand Charm

=기타 다른 파일 설정

아이템이니에는 위에 정의한 보석과 참을 줍지 않도록 주석처리되어 있습니다.