[Help] Mesos Drop (Have Checked If Posted)

Results 1 to 1 of 1
  1. #1
    Newbie Fazi13 is offline
    MemberRank
    Jan 2012 Join Date
    2Posts

    [Help] Mesos Drop (Have Checked If Posted)

    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
    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(posmob.getPosition()), mobchrfalsedroptype);
                        } 
    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.

    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.




Advertisement