보스몹이 컴비네이션 이뮨 일때 치킨 셋팅
분류
봇관련
조회 수
3,673
추천 수
0
파이어 오브 소서가 나락 잡을땐 꼭 필요 하겠죠^^
케릭파일 클릭 하시고
/////////////////////////////////////////////////////////////////////
// Immunities/Resistances/Enchantments to skip on bosses
//====================================================================
//Set each to true to chicken out if the boss is immune to that kind of damage
//--------------------------------------------------------------------
DA_Immunities[1]=false; // Physical
DA_Immunities[2]=false; // Magic
DA_Immunities[3]=false; // Fire
DA_Immunities[4]=false; // Lightning
DA_Immunities[5]=false; // Cold
DA_Immunities[6]=false; // Poison
//--------------------------------------------------------------------
// Immunities Combinations
// Method: if set to true, will chicken with that immunities# / immunities# combination
// DA_ImmunitiesCombo[next number] = new Array(immunities#,immunities#,true/false);
//--------------------------------------------------------------------
DA_ImmunitiesCombo[1]=new Array(1,2,false); // Immune to Physical and Immune to Magic
DA_ImmunitiesCombo[2]=new Array(4,5,false); // Immune to Lightning and Immune to Cold
//파이어 콜드 이뮨을 만들어 보죠
DA_ImmunitiesCombo[3]=new Array(3,5,true);//true면 치킨 // 보스몹이 파이어 콜드 이뮨이면 치킨
//==============================================================================================
//물리 독 이뮨을 만들어 봅니다 (이런 놈도 있나요?)
DA_ImmunitiesCombo[4]=new Array(1,3,true); // 보스몹이 물리 독 이뮨이면 치킨
DA_ImmunitiesCombo[4]:[ ] 안에 숫자는 4번째 테이터란 뜻입니다.
이젠 감이 잡히시죠
=====================================================================================================
보스 몹 개별 이뮨 셋팅입니다.
각 보스마다 이뮨셋팅은 각자 하셔야 합니다.
위와 같이 파이어 + 콜드 이뮨 만나면 치킨 설정을 해 놓아도
아래와 같이 보스몹 이뮨 설정을 안하면 잡습니다.
잡다가 죽을 수도 있지만...
치킨 하실려면 DA_CheckImmunes=false;이부분을 true로 하면 치킨합니다.
변수가 많으니 각자 케릭에 맞게 셋팅하세요.
예) 라다먼트가 파이어+콜드 이뮨일때
}////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// RadamentXP configuration
//-------------------------------------------------------------------------------------------------------------------------------
function RaXP_Variables() {
RaXP_ClearLevel2 = false;
RaXP_ClearLevel3 = false;
XP_Static=0;
XP_SwitchOnKill=false;
XP_SwitchHP=40;
XP_StallKill=false;
XP_StallHP=40;
XP_StallSkipPhys=false;
DA_CheckImmunes=false;이부분을 true로 하면 치킨합니다.
DA_CheckEnchantements=false;
DA_CheckAuras=false;
단일 내성에 치킨 할려면(가령 콜드 내성일때)
/////////////////////////////////////////////////////////////////////
// Immunities/Resistances/Enchantments to skip on bosses
//====================================================================
//Set each to true to chicken out if the boss is immune to that kind of damage
//--------------------------------------------------------------------
DA_Immunities[1]=false; // Physical
DA_Immunities[2]=false; // Magic
DA_Immunities[3]=false; // Fire
DA_Immunities[4]=false; // Lightning
DA_Immunities[5]=false; // Cold 이 부분을 ture로 하고
DA_Immunities[6]=false; // Poison
각보스몹 configuration에서 원하는 보스몹을 선택후
XP_StallSkipPhys=false;
DA_CheckImmunes=false;이부분을 true로 하면 치킨합니다.
DA_CheckEnchantements=false;
DA_CheckAuras=false;