Reactor drops & Looting & Mob HP overhaul + TreasurePQ
Modified coupon rates buff icon to not show up as expirable. Reactor drops now also drops quest items at the border of the dropped items. Added themed drop data for the Cake boss. Reworked the Balrog expedition. Added quest script for the Assassinate skill. Fixed looting system blocking the killer's party from retrieving a loot until the FFA timeout. Fixed a deadlock with the MapleMap class. Refactored damage/heal contabilization on mobs. Fixed issues with HT and status-based damage, providing weird issues with mob HP. New PQ: TreasurePQ, for level 140+.
This commit is contained in:
4
scripts/portal/MD_cakeEnter.js
Normal file
4
scripts/portal/MD_cakeEnter.js
Normal file
@@ -0,0 +1,4 @@
|
||||
function enter(pi) {
|
||||
pi.playPortalSound(); pi.warp(674030100,"in00");
|
||||
return true;
|
||||
}
|
||||
4
scripts/portal/enter_td.js
Normal file
4
scripts/portal/enter_td.js
Normal file
@@ -0,0 +1,4 @@
|
||||
function enter(pi) {
|
||||
pi.playPortalSound(); pi.warp(600000000,"yn00");
|
||||
return true;
|
||||
}
|
||||
28
scripts/portal/guyfawkes0_esc.js
Normal file
28
scripts/portal/guyfawkes0_esc.js
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
This file is part of the HeavenMS (MapleSolaxiaV2) MapleStory Server
|
||||
Copyleft (L) 2017 RonanLana
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
function enter(pi) {
|
||||
if(pi.getEventInstance().getIntProperty("statusStg1") == 1) {
|
||||
pi.playPortalSound(); pi.warp(674030200, 0);
|
||||
return true;
|
||||
} else {
|
||||
pi.message("The tunnel is currently blocked.");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
23
scripts/portal/guyfawkes0_floor.js
Normal file
23
scripts/portal/guyfawkes0_floor.js
Normal file
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
This file is part of the HeavenMS (MapleSolaxiaV2) MapleStory Server
|
||||
Copyleft (L) 2017 RonanLana
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation version 3 as published by
|
||||
the Free Software Foundation. You may not use, modify or distribute
|
||||
this program under any other version of the GNU Affero General Public
|
||||
License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
function enter(pi) {
|
||||
pi.warp(674030000, 0);
|
||||
return true;
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
function enter(pi) {
|
||||
pi.saveLocation("MIRROR");
|
||||
pi.playPortalSound(); pi.warp(926010000, 0);
|
||||
pi.getPlayer().saveLocation("MIRROR");
|
||||
pi.playPortalSound(); pi.warp(926010000, 4);
|
||||
return true;
|
||||
}
|
||||
@@ -23,6 +23,10 @@ Author: kevintjuh93
|
||||
*/
|
||||
|
||||
function enter(pi) {
|
||||
pi.playPortalSound(); pi.warp(pi.getPlayer().getSavedLocation("MIRROR"));
|
||||
var mapid = pi.getPlayer().getSavedLocation("MIRROR");
|
||||
|
||||
pi.playPortalSound();
|
||||
if(mapid == 260020500) pi.warp(mapid, 3);
|
||||
else pi.warp(mapid);
|
||||
return true;
|
||||
}
|
||||
@@ -21,10 +21,10 @@
|
||||
*/
|
||||
/**
|
||||
* @author BubblesDev v83 (Moogra)
|
||||
* @purpose Warps to the Junior Balrog map for the Rush Skill.
|
||||
* @purpose Warps to the Relic map for the Assassinate Skill.
|
||||
*/
|
||||
function enter(pi) {
|
||||
if(pi.isQuestStarted(6202)) {
|
||||
if(pi.isQuestStarted(6201)) {
|
||||
if(pi.getWarpMap(910200000).countPlayers() == 0) {
|
||||
pi.resetMapObjects(910200000);
|
||||
pi.playPortalSound(); pi.warp(910200000, 0);
|
||||
|
||||
Reference in New Issue
Block a user