Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Index: Player.java
- if ((isPet && _summon != null && _summon.isDead()) || (!isPet && isDead()))
- {
- _reviveRequested = 1;
- _revivePower = (isPhoenixBlessed()) ? 100 : Formulas.calculateSkillResurrectRestorePercent(skill.getPower(), reviver);
- _revivePet = isPet;
- ConfirmDlg confirm = new ConfirmDlg(SystemMessageId.RESSURECTION_REQUEST_BY_S1.getId());
- + confirm.addString("Do you wish to Res?");
- + confirm.addTime(45000);
- + confirm.addRequesterId(reviver.getObjectId());
- + confirm.addString(reviver.getName());
- + sendPacket(confirm);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement