아이템드랍 필드별제한
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

최강빅토리 님의 최근 댓글