Horntail PQ & Exped + Equip levelup fix

Added Horntail PQ and boss fight. Fixed short integer overflow of
equipment stats on client messing up player stats.
This commit is contained in:
ronancpl
2017-07-20 12:02:59 -03:00
parent 8fab2a6e3e
commit c09bc02c85
137 changed files with 1154 additions and 583 deletions

View File

@@ -45,7 +45,8 @@ import server.maps.MapleReactor;
import server.maps.ReactorDropEntry;
/**
* @author Lerk, Ronan
* @author Lerk
* @author Ronan
*/
public class ReactorActionManager extends AbstractPlayerInteraction {
private MapleReactor reactor;
@@ -59,6 +60,14 @@ public class ReactorActionManager extends AbstractPlayerInteraction {
this.iv = iv;
}
public void hitReactor() {
reactor.hitReactor(client);
}
public void destroyNpc(int npcId) {
reactor.getMap().destroyNPC(npcId);
}
public void dropItems() {
dropItems(false, 0, 0, 0, 0);
}