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.
31 lines
746 B
Java
31 lines
746 B
Java
/*
|
|
* 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);
|
|
}
|
|
}
|