아이템드랍 필드별제한
L1pcinstance.java
public int getZoneType() { //드랍제한
if (getMap().isSafetyZone(getLocation())) return 1;
else if (getMap().isCombatZone(getLocation())) return -1;
else return 0;
}
C_DropItem.java
if (pc.getZoneType() == 1 || pc.getZoneType() == -1) {
pc.sendPackets(new S_SystemMessage("\\aL드랍불가지역"));
return;
}
드랍제한 1= SafetyZone 0= NormalZone -1 = CombatZone

최강빅토리 님의 최근 댓글
날짜는 변경했구요..그래도 안되네요~클라를 다시 구해서 해봐야겠네요 ㅜㅜ 2016 06.23