Properly developed the Marriage feature in the source. Added TRAVEL_RATE server flag, a modifier for the travel frequency rate. Corrected stance for players in 3rd party view when entering a map to work similarly as GMS. Fixed mobs spamming skills incoherently. Added code support for old GMS-like PQ NPCs, where party leaders just need to click once to start a new PQ. Implemented podium system for the Hall of Fame PlayerNPCs. Improved character load-out system, now using way less queries to the DB in the process. Fixed birthday field for accounts not being read correctly. Further implemented the incomplete yet-existing Scissors of Karma mechanic. Fixed Duey not propagating item flags when packaging an item. Added a custom buyback system. Refactored the character creation system, now offering support for Maple Life. Fixed some issues with the PlayerNPC positioning system. Added server flag allowing AP assignment for novices (beginners under level 11). Fixed Strategy Time (GPQ) announcement being sent twice to guilds in certain cases. Tweaked mount EXP system now awarding it accordingly with the amount of tiredness healed. Removed the randomness aspect of closeness gain when feeding the pet, now acting accordingly with amount of fullness gained. Fixed an exploit with Arwen script. Fixed travel-back from Florina forcefully sending players to Lith Harbor in certain situations. Thoroughly reviewed job skill questlines for Explorers and Aran. Localhost edit: removed MTS block in certain maps (useful for the buyback system). Localhost edit: removed party blocks for novices. Localhost edit: removed AP assigning block for novices. Localhost edit: removed speed cap. Localhost edit: removed Maker block popping up when inputting ATK gems on non-weapons.
92 lines
4.6 KiB
JavaScript
92 lines
4.6 KiB
JavaScript
/*
|
|
This file is part of the OdinMS Maple Story Server
|
|
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
|
Matthias Butz <matze@odinms.de>
|
|
Jan Christian Meyer <vimes@odinms.de>
|
|
|
|
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/>.
|
|
*/
|
|
|
|
status = -1;
|
|
var sel, sel2;
|
|
|
|
function start() {
|
|
cm.sendOk("Hello, the Maple 7th Day Market is currently unavailable.");
|
|
cm.dispose();
|
|
return;
|
|
|
|
cm.sendSimple("Hello, the Maple 7th Day Market opens today.#b\r\n#L0#Move to Maple 7th Day Market map\r\n#L1#Listen for an explanation about the Maple 7th Day Market");
|
|
}
|
|
|
|
function action(mode, type, selection) {
|
|
status++;
|
|
if (status == 6 && mode == 1) {
|
|
sel2 = undefined;
|
|
status = 0;
|
|
}
|
|
if (mode != 1) {
|
|
if (mode == 0 && type == 0)
|
|
status -= 2;
|
|
else {
|
|
cm.dispose();
|
|
return;
|
|
}
|
|
}
|
|
if (status == 0) {
|
|
if (sel == undefined)
|
|
sel = selection;
|
|
if (selection == 0) {
|
|
cm.sendNext("Okay, we will send you to the Maple 7th Day Market map.");
|
|
} else
|
|
cm.sendSimple("What would you like to know about the Maple 7th Day Market?#b\r\n#L0#Where does the Maple 7th Day Market take place?\r\n#L1#What can you do at the Maple 7th Day Market?\r\n#L2#I do not have any questions.");
|
|
} else if(status == 1) {
|
|
if (sel == 0) {
|
|
cm.getPlayer().saveLocation("EVENT");
|
|
cm.warp(680100000 + parseInt(Math.random() * 3));
|
|
cm.dispose();
|
|
} else if (selection == 0) {
|
|
cm.sendNext("The Maple 7th Day Market opens only on Sundays. You can enter if you find me in any town, Henesys, New Leaf City, Leafre, Kerning City, Ludibrium, I'm just about everywhere!");
|
|
status -= 2;
|
|
} else if (selection == 1)
|
|
cm.sendSimple("You can find rare goods that are hard to find elsewhere at the Maple 7th Day Market.#b\r\n#L0#Purchase Special Items\r\n#L1#Help the Poultry Farm Owner");
|
|
else {
|
|
cm.sendNext("I guess you don't have any question. Please keep us in your thoughts, and ask if you are curious about anything.");
|
|
cm.dispose();
|
|
}
|
|
} else if (status == 2) {
|
|
if (sel2 == undefined)
|
|
sel2 = selection;
|
|
if (sel2 == 0)
|
|
cm.sendNext("You can find many items at the Maple 7th Day Market. The prices are subject to change, so you'd better get them when they're cheap!");
|
|
else
|
|
cm.sendNext("Aside from the merchants, you can also find the lazy daughter of the poultry farm owner at the Maple 7th Day Market. Help Mimi and hatch her egg until it grows to be a chicken!");
|
|
} else if (status == 3) {
|
|
if (sel2 == 0)
|
|
cm.sendNextPrev("The purchases made here can be sold back to the merchant intermediary, Abdula. He won't accept anything more than a week old, so make sure you re-sell by Saturday!");
|
|
else
|
|
cm.sendNextPrev("Since she can't just trust anyone with the egg, she'll ask for deposit money. Pay her the deposit and take good care of the egg.");
|
|
} else if (status == 4) {
|
|
if (sel2 == 0)
|
|
cm.sendNextPrev("Abdula adjusts his reselling rates as well, so it would be wise to sell when you can make the most profit. The prices tend to fluctuate hourly, so remember to check often.");
|
|
else
|
|
cm.sendNextPrev("If you manage to successfully grow the egg into a chicken and take it back to Mimi, Mimi will reward you. She may be lazy but she's not ungrateful.");
|
|
} else if (status == 5) {
|
|
if (sel2 == 0)
|
|
cm.sendNextPrev("Test your business wit by buying good at low prices in the Maple 7th Day Market and selling it to the merchant intermediary when its value goes up!");
|
|
else
|
|
cm.sendNextPrev("You can click on the egg to check on its growth. You have to be diligent with the egg since the EXP you gain and the egg will grow together.");
|
|
}
|
|
} |