XP 봇, 피트 길찾기
분류
봇관련
조회 수
2,880
추천 수
0
피트 길찾기 에러가 자주 날경우 , 이렇게 바꿔 보세요.
bots 폴더, PitXP.d2j 를 편집기로 열고,
다음 함수를 아래처럼 바꿔보세요.
기존에 쓰던거는, 만약을 대비해서, 주석처리 해주는게 좋겠죠..
function TPXP_GoToThePit() {
// Display a overhead while moving
if (XP_UseOverheads) { me.overhead("Going to The Pit"); }
// If the user want to clear the path, link to the clearing function
if (XP_ClearPath) { commPather.StepActionFunc = XP_KillMonsters; }
// Move from current position to the entrance of The Pit
commPather.GotoDest(15138,4995);
commPather.GotoDest(15138,5070);
commPather.GotoDest(15138,5113);
_retval = commPather.GotoObject(5,2,3,7,20,false,false);
if (!_retval) {DC_ThrowException("PitXP","Unable to path to the entrance to The Pit"); }
// Enter The Pit
DC_DoDel(DC_LagDelay);
DM_TakeStairs(2,3);
}