XP 봇, 안다 길찾기
분류
봇관련
조회 수
2,214
추천 수
0
안다 길찾기 에러가 많이 날경우, 이렇게 바꿔보세요.
bots 폴더 AndyXP.d2j 를 편집기로 열어서,
다음 함수 아래처럼 고쳐보세요. (역시, 기존건 주석처리 해두시고요)
function AXP_GoToAndy() {
// Display a overhead while moving
if (XP_UseOverheads) { me.overhead("Going to Andariel's lair"); }
// If the user want to clear the path, link to the clearing function
if (XP_ClearPath) { commPather.StepActionFunc = XP_KillMonsters; }
DC_PingDel(DC_LagDelay);
// Move from Catacombs 2 waypoint to Andariel's lair
_retval = commPather.GotoObject(5,17,18,36,20,false,false);
if (!_retval) { _retval = commPather.GotoWarp(DP_WARPNEXT); }
if (!_retval) { DC_ThrowException("AndyXP","Unable to path to the stairs to Catacombs 3!"); }
DM_TakeStairs(18,18);
DC_PingDel(DC_LagDelay);
_retval = commPather.GotoObject(5,17,18,37,20,false,false);
if (!_retval) { _retval = commPather.GotoWarp(DP_WARPNEXT); }
if (!_retval) { DC_ThrowException("AndyXP","Unable to path to the stairs to Catacombs 4!"); }
------------- 이하 생략 --------------