Map buff protection & Expirable quest patch + Storage notice

Fixed items such as Red Bean Porridge and Air Bubble from acting outside of their scopes (now Air Bubble acts only under water, for instance).
Fixed an exploit with expirable quests when accessing the cash shop, that would make them "unexpirable".
Tweaked storages, now showing up popup warnings to players under level 15 instead of using the chat text area.
Removed "One-of-a-kind" tag from Lilin's Ring (caused conflicts with the Agent E custom script).
Added a few more scrolls to Spindle's shop.
Implemented several minor drop data adjustments.
This commit is contained in:
ronancpl
2018-02-09 23:25:21 -02:00
parent 3f8904ef44
commit 2d49c322e1
29 changed files with 338 additions and 138 deletions

View File

@@ -86,7 +86,14 @@ function timeOut(eim) {
eim.dispose();
}
function monsterKilled(mob, eim) {}
function monsterKilled(mob, eim) {
// Happens when an opposing mob dies
}
function monsterValue(eim, mobid) {
// Invoked when a monster that's registered has been killed
// return x amount for this player - "Saved Points"
}
function friendlyKilled(mob, eim) {
// Happens when a friendly mob dies
@@ -112,11 +119,6 @@ function playerDisconnected(eim, player) {
// return x that is < 0 - Deregister player normally + Dispose instance if there x player or below, if it's leader = boot all
}
function monsterValue(eim, mobid) {
// Invoked when a monster that's registered has been killed
// return x amount for this player - "Saved Points"
}
function end(eim) {
// Happens when the party fails to complete the event instance.
}