Updated Meso & Arrow drops + Aran change jobs fix + improved concurrency

Added meso drop data for many mobs that were missing mesos.
Enhanced arrow drop data, now dropping bundles instead of unitary items.
Fixed issues with several Aran change jobs crashing the player shortly after changing jobs.
Improved concurrency in MapleGuild, MapleAlliance and MaplePlayerShop.
New tools: MapleArrowFetcher and MapleMesoFetcher, that were used to compile the updated drop data info.
This commit is contained in:
ronancpl
2017-11-01 13:34:26 -02:00
parent 44949aea37
commit 64af2cfa00
192 changed files with 44793 additions and 271 deletions

View File

@@ -0,0 +1,30 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package server.partyquest.mcpq;
import org.slf4j.LoggerFactory;
/**
* Logs various errors and also keeps data on Carnival PQ runs.
* @author s4nta
*/
public class MCTracker {
static org.slf4j.Logger log = LoggerFactory.getLogger(MCTracker.class);
// TODO:
// Add field-specific info
// Add methods for calls from different files
// Maybe write own version of FilePrinter?
static final String PATH = "Reports/MCPQ.txt";
public static void log(String msg) {
System.out.println(msg);
log.debug(msg);
}
}