Reworked Autoassigner & Hero's Will & Trade + Visual NX + New commands

Reworked autoassigner (improved limits between required secondary and
surplus primary stats). Hero's will removes most of diseases, tonic
removes slow. Added visual info for collected NX cards. Added commands
cake (cake boss with customizable HP) and setgmlevel. Reworked Trade
system now checking for slots smartly (instead of just checking for
empty slots).
This commit is contained in:
ronancpl
2017-09-01 01:20:01 -03:00
parent 001125ccdb
commit 74b4ca4132
179 changed files with 36378 additions and 35614 deletions

13
scripts/npc/1012115.js Normal file
View File

@@ -0,0 +1,13 @@
function start() {
var status = cm.getQuestStatus(20706);
if (status == 0) {
cm.sendNext("It looks like there's nothing suspicious in the area.");
} else if (status == 1) {
cm.forceCompleteQuest(20706);
cm.sendNext("You have spotted the shadow! Better report to #p1103001#.");
} else if (status == 2) {
cm.sendNext("The shadow has already been spotted. Better report to #p1103001#.");
}
cm.dispose();
}