Removed useless popup + 3rd job Cygnus revamp + droplimit command
Removed the Stat Upgrade UI that would popup when leveling up to 15/20/25/30. Improved 3rd job advancement for Cygnus Knights, now working GMS-like. Added "droplimit" command. When issued, it will show to the player the current drop count on the map.
This commit is contained in:
30
scripts/map/onUserEnter/108010600.js
Normal file
30
scripts/map/onUserEnter/108010600.js
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
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/>.
|
||||
*/
|
||||
|
||||
var npcid = 1104100;
|
||||
var spawnPos = new Packages.java.awt.Point(2830, 78);
|
||||
|
||||
function start(ms) {
|
||||
var mapobj = ms.getMap();
|
||||
|
||||
if(!mapobj.containsNPC(npcid)) {
|
||||
ms.spawnNpc(npcid, spawnPos, mapobj);
|
||||
}
|
||||
}
|
||||
30
scripts/map/onUserEnter/108010610.js
Normal file
30
scripts/map/onUserEnter/108010610.js
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
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/>.
|
||||
*/
|
||||
|
||||
var npcid = 1104101;
|
||||
var spawnPos = new Packages.java.awt.Point(3395, -322);
|
||||
|
||||
function start(ms) {
|
||||
var mapobj = ms.getMap();
|
||||
|
||||
if(!mapobj.containsNPC(npcid)) {
|
||||
ms.spawnNpc(npcid, spawnPos, mapobj);
|
||||
}
|
||||
}
|
||||
30
scripts/map/onUserEnter/108010620.js
Normal file
30
scripts/map/onUserEnter/108010620.js
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
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/>.
|
||||
*/
|
||||
|
||||
var npcid = 1104102;
|
||||
var spawnPos = new Packages.java.awt.Point(500, -522);
|
||||
|
||||
function start(ms) {
|
||||
var mapobj = ms.getMap();
|
||||
|
||||
if(!mapobj.containsNPC(npcid)) {
|
||||
ms.spawnNpc(npcid, spawnPos, mapobj);
|
||||
}
|
||||
}
|
||||
30
scripts/map/onUserEnter/108010630.js
Normal file
30
scripts/map/onUserEnter/108010630.js
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
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/>.
|
||||
*/
|
||||
|
||||
var npcid = 1104103;
|
||||
var spawnPos = new Packages.java.awt.Point(-2263, -582);
|
||||
|
||||
function start(ms) {
|
||||
var mapobj = ms.getMap();
|
||||
|
||||
if(!mapobj.containsNPC(npcid)) {
|
||||
ms.spawnNpc(npcid, spawnPos, mapobj);
|
||||
}
|
||||
}
|
||||
30
scripts/map/onUserEnter/108010640.js
Normal file
30
scripts/map/onUserEnter/108010640.js
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
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/>.
|
||||
*/
|
||||
|
||||
var npcid = 1104104;
|
||||
var spawnPos = new Packages.java.awt.Point(372, 70);
|
||||
|
||||
function start(ms) {
|
||||
var mapobj = ms.getMap();
|
||||
|
||||
if(!mapobj.containsNPC(npcid)) {
|
||||
ms.spawnNpc(npcid, spawnPos, mapobj);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user