Minor XML patch

Patched minor inconsistencies with the current WZ and XMLs, reflecting into some issues with Dojo mechanics.
This commit is contained in:
ronancpl
2018-09-24 17:03:15 -03:00
parent 5480035005
commit 3a8377c283
4123 changed files with 325807 additions and 1086 deletions

View File

@@ -341,7 +341,7 @@ function action(mode, type, selection) {
if (mode == 0) {
cm.sendNext("You think you can go even higher? Good luck!");
} else if (cm.getPlayer().getDojoStage() == Math.floor(cm.getMapId() / 100) % 100) {
cm.sendOk("Looks like you came all the way up here without recording your score. Sorry, but you can't record now.");
cm.sendOk("Your score have already been recorded. Next time you get to challenge the Dojo, you'll be able to come back to this point.");
} else {
cm.sendNext("I recorded your score. If you tell me the next time you go up, you'll be able to start where you left off. Note that you will have your #rrecord erased#k if you choose to #bcontinue challenging the Dojo#k, so choose carefully.");
cm.getPlayer().setDojoStage(Math.floor(cm.getMapId() / 100) % 100);

View File

@@ -237,7 +237,7 @@ function action(mode, type, selection) {
if (mode == 0) {
cm.sendNext("You think you can go even higher? Good luck!");
} else if (925020000 + cm.getPlayer().getDojoStage() * 100 == cm.getMapId()) {
cm.sendOk("Looks like you came all the way up here without recording your score. Sorry, but you can't record now.");
cm.sendOk("Your score have already been recorded. Next time you get to challenge the Dojo, you'll be able to come back to this point.");
} else {
cm.sendNext("I recorded your score. If you tell me the next time you go up, you'll be able to start where you left off.");
cm.getPlayer().setDojoStage((cm.getMapId() - 925020000) / 100);