구버전 운영자 위치 이동 소스
구버전 sp팩
CommandController.java 부분에 운영자 명령어 위치에 추가하시면됩니다.
else if (key.equalsIgnoreCase(".이동")) {
try {
int x = Integer.valueOf(st.nextToken());
int y = Integer.valueOf(st.nextToken());
int map = Integer.valueOf(st.nextToken());
o.toTeleport(x, y, map, true);
} catch (Exception e) {
ChattingController.toChatting(o, Lineage.command + "이동 [x, y, map]", Lineage.CHATTING_MODE_MESSAGE);
}
return true;
}

구버전프로그래머 님의 최근 댓글