Autoassigner patch

Fixed autoassigner handler not reading the client's packet properly when using USE_SERVER_AUTOASSIGNER = false.
Updated questid for some drops on the DB.
Added scripts for some quests on the Aran's Full Swing skill questline.
This commit is contained in:
ronancpl
2018-04-18 13:35:42 -03:00
parent 6a63f9d95e
commit 134c34fa58
15 changed files with 256 additions and 70 deletions

View File

@@ -3,14 +3,17 @@ var status = -1;
function start(mode, type, selection) {
status++;
if (status == 0) {
if(qm.haveItem(4032423, 1)) {
qm.forceStartQuest();
qm.dispose();
return;
}
qm.sendNext("#bHm, there's a medicinal substance in the box. What could this be? You better take this to John and ask him what it is.#k");
} else {
qm.gainItem(4032423,1);
qm.forceCompleteQuest();
qm.gainItem(4032423,1);
qm.forceStartQuest();
qm.dispose();
}
}
function end(mode, type, selection) {
qm.dispose();
}