변신주문서 만드는방법아시는고수님 ㅠㅠ
컨텐츠 정보
- 541 조회
- 7 댓글
- 0 추천
- 0 비추천
-
목록
본문
군터변신주문서 이런식으러 만들려면 소스만져야하나요??쉬운방법있으면 알려쥬세요 ㅠㅠ
-
등록일 2024.12.24
-
등록일 2024.12.23
-
등록일 2024.05.31
-
등록일 2024.05.29
관련자료
댓글 7

asdgsdgd님의 댓글의 댓글
자바로 해야하나요?
static synchronized public ItemInstance clone(ItemInstance item) {
if (item == null)
item = new ScrollOfSpecialPoly();
return item;
}
@Override
public void toClick(Character cha, ClientBasePacket cbp) {
int poly = 0;
// 드래곤 슬레이어 레벨 제한 확인
if(getItem().getName().contains("드래곤 슬레이어") && cha.getLevel() < Lineage.DragonSlayer_Poly_Level){
ChattingController.toChatting(cha, String.format("[알림] 드래곤 슬레이어 변신 필요 레벨은 %d입니다.", Lineage.DragonSlayer_Poly_Level), 20);
return;
}
if (getItem().getName().contains("군터"))
poly = 409;
else if (getItem().getName().contains("질리언"))
poly = 415;
else if (getItem().getName().contains("조우"))
poly = 419;
else if (getItem().getName().contains("드래곤 슬레이어"))
poly = 14563;
Poly p = PolyDatabase.getPolyGfx(poly);
여기소스에서 수정해야하나요? ㅠㅠ
static synchronized public ItemInstance clone(ItemInstance item) {
if (item == null)
item = new ScrollOfSpecialPoly();
return item;
}
@Override
public void toClick(Character cha, ClientBasePacket cbp) {
int poly = 0;
// 드래곤 슬레이어 레벨 제한 확인
if(getItem().getName().contains("드래곤 슬레이어") && cha.getLevel() < Lineage.DragonSlayer_Poly_Level){
ChattingController.toChatting(cha, String.format("[알림] 드래곤 슬레이어 변신 필요 레벨은 %d입니다.", Lineage.DragonSlayer_Poly_Level), 20);
return;
}
if (getItem().getName().contains("군터"))
poly = 409;
else if (getItem().getName().contains("질리언"))
poly = 415;
else if (getItem().getName().contains("조우"))
poly = 419;
else if (getItem().getName().contains("드래곤 슬레이어"))
poly = 14563;
Poly p = PolyDatabase.getPolyGfx(poly);
여기소스에서 수정해야하나요? ㅠㅠ