[봉구님 버전 3.1에서의 상급보석 줍기 및 큐빙]
분류
봇관련
조회 수
5,660
추천 수
1
[1] 우선 상급/최상급 보석을 줍게 설정합니다.
\scripts\settings\gems.nip에서 상급/최상급 보석의 주석(;) 처리 제거
;== 상급보석 ==
Name = Flawless Amethyst;
Name = Flawless Diamond;
Name = Flawless Emerald;
Name = Flawless Ruby;
Name = Flawless Sapphire;
Name = Flawless Skull;
Name = Flawless Topaz;
; == 최상급보석 ==
Name = Perfect Amethyst;
Name = Perfect Diamond;
Name = Perfect Emerald;
Name = Perfect Ruby;
Name = Perfect Sapphire;
Name = Perfect Skull;
Name = Perfect Topaz;
[2] XP_Config.d2l에서 큐빙을 가능하게 설정합니다.(봉구님 파일은 큐빙이 안되게 되어 있습니다)
\scripts\libs\XP\XP_Config.d2l
//////////////////////////////////////////////////////////////////////
// Cube configuration
//////////////////////////////////////////////////////////////////////
function XP_CubeSettings() {
//////////////////////////////////////////////////////////////////////
// General cubing settings
//====================================================================
// DCU_CubingEnabled = true/false Switch to (de-)activate the cube lib
// DCU_countrycode = x Language (0=ger, 1=eng)
//--------------------------------------------------------------------
//DCU_CubingEnabled = false; //원본내용을 아래와 같이 수정합니다.
DCU_CubingEnabled = true;
DCU_countrycode = 1;
//////////////////////////////////////////////////////////////////////
// Available recipes (maybe there are some more).
// Remove the '//' at the beginning of a line to enable a recipe
//====================================================================
//앞부분 생략
DCU_Codes.push(["glw",0,3]); //Flawless Diamond glw
DCU_Codes.push(["gzv",0,3]); //Flawless Amethyst gzv
DCU_Codes.push(["glb",0,3]); //Flawless Saphire glb
DCU_Codes.push(["gly",0,3]); //Flawless Topaz gly
DCU_Codes.push(["glr",0,3]); //Flawless Ruby glr
DCU_Codes.push(["glg",0,3]); //Flawless Emerald glg
DCU_Codes.push(["skl",0,3]); //Flawless Skull skl
//뒷 부분생략
[3] 이 부분은 수정안해도 될 것 같습니다.
제가 따로 테스트를 안해서 같이 올립니다.
상급보석을 최상급보석으로 큐빙하게 설정
\scripts\libs\common\d2jsp-cubing.d2l
//////////////////////////////////////////////////////////////////////
// Cube Settings
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// General cubing settings
//====================================================================
// DCU_CubingEnabled = true/false Switch to (de-)activate the cube lib
// DCU_countrycode = x Language (0=ger, 1=eng)
//--------------------------------------------------------------------
DCU_CubingEnabled = true;
DCU_countrycode = 1;
//////////////////////////////////////////////////////////////////////
// Available recipes (maybe there are some more).
// Remove the '//' at the beginning of a line to enable a recipe
//====================================================================
//처음 생략됨
DCU_Codes.push(["glw",0,3]); //Flawless Diamond glw
DCU_Codes.push(["gzv",0,3]); //Flawless Amethyst gzv
DCU_Codes.push(["glb",0,3]); //Flawless Saphire glb
DCU_Codes.push(["gly",0,3]); //Flawless Topaz gly
DCU_Codes.push(["glr",0,3]); //Flawless Ruby glr
DCU_Codes.push(["glg",0,3]); //Flawless Emerald glg
DCU_Codes.push(["skl",0,3]); //Flawless Skull skl
//뒷부분 생략
[3]도 수정해야 되는지 정확하게 아시는 분이 있으시면 답변 부탁드립니다.