Show HH/CT damage + Miniroom patch + Removed redundant skillbook drops

Added a server flag to allow solo expeditions.
Added a server flag that allows short-lengthened cooldown on Hero's Will skill.
Added recipes for Advanced Mob Crystal 2 and 3 (level 120 and 130) within Etc Maker.
Fixed Heaven's Hammer and Combo Tempest not displaying damage dealt value.
Fixed some minor PE exploits with players being allowed to create minirooms while dead or inside an event.
Adjusted item dropped from mobs to now allow visible quest items appear before not-visible ones, thus showing no "empty spaces" when the mob has multiple quest drops.
Fixed Horntail not attributing quest progress for "The Last Hour of Horntail" quest. Attribution only happens inside the expedition.
Removed unnecessary skill books from the drop data, since quests for them were recently implemented.
This commit is contained in:
ronancpl
2018-06-15 12:50:42 -03:00
parent dddfdcf315
commit c4d6531177
27 changed files with 729 additions and 104 deletions

View File

@@ -24,10 +24,6 @@
*/
var status = 0;
var minLevel = 80;
var maxLevel = 255;
var minPlayers = 1;
var maxPlayers = 6;
function start() {
status = -1;
@@ -49,6 +45,13 @@ function action(mode, type, selection) {
if (status == 0) {
if(cm.haveItem(4001086)) {
cm.sendYesNo("Do you want to access #b#m240050400##k right now?");
} else if(Packages.constants.ServerConstants.USE_ENABLE_SOLO_EXPEDITIONS) {
if(canBypassHTPQ()) {
cm.sendYesNo("Do you want to access #b#m240050400##k right now?");
} else {
cm.sendOk("Those who don't have the #r#t4001086##k must prove their valor before challenging #bHorntail#k. Come here holding the #r3 certificates#k that proves you're worthy to || the task."); // NPC picture is so long it goes through some section of text, || to fill up that space
cm.dispose();
}
} else {
cm.sendOk("Those who don't have the #r#t4001086##k must prove their valor before challenging #bHorntail#k.");
cm.dispose();
@@ -60,5 +63,7 @@ function action(mode, type, selection) {
}
}
}
function canBypassHTPQ() {
return cm.haveItem(4001083) && cm.haveItem(4001084) && cm.haveItem(4001085);
}