Yes. I have looked at every single other thread. I did a search and read through all 15 pages on Rage Zone. None of them were useful.
Alright so I have a boss spawner in the FM that spawns 10 monsters like BF and etc. However, when the monsters die, they drop absolutely nothing. What I want them to drop are tons of meso bags. I've looked in the MapleMap.Java and in the dropFromMonster, it says
so I thought that if I went into MySQL and added a drop ID that was 0 and I set the min = 10 and max = 100 and chance to 100000.PHP Code:if (de.itemId == 0) { // meso
int mesos = Randomizer.nextInt(de.Maximum - de.Minimum) + de.Minimum;
if (mesos >= 0) {
if (chr.getBuffedValue(MapleBuffStat.MESOUP) != null) {
mesos = (int) (mesos * chr.getBuffedValue(MapleBuffStat.MESOUP).doubleValue() / 100.0);
}
spawnMesoDrop(mesos * chr.getMesoRate(), calcDropPos(pos, mob.getPosition()), mob, chr, false, droptype);
}
However, it still doesn't drop any mesos and I'm getting lots of errors in the CMD saying that n must be positive. So, I tried looking in the XML files and there is nothing about mesos in there.
Does anyone know what else to do? I'm using Moople for v83.


Reply With Quote![[Help] Mesos Drop (Have Checked If Posted)](http://ragezone.com/hyper728.png)

