Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Harvest fix for (v116.1 source)

Joined
Oct 22, 2011
Messages
658
Reaction score
338
This is a Harvest fix for my source.
that called: "Ciphra Dev" as well.

The problem is when someone trying to craft when you're at his map you're getting

The header: (Sendop)
SHOW_HARVEST = 0x14A

The packet in CField:
Code:
 public static byte[] showHarvesting(MapleClient c, int tool) {
              MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter();

              mplew.writeShort(SendPacketOpcode.SHOW_HARVEST.getValue());
              mplew.writeInt(c.getPlayer().getId());
              mplew.write(1);
              mplew.writeInt(tool);
              mplew.writeInt(0);

              return mplew.getPacket();
            }

Then you'll have 2 errors so goto:
ItemMakerHandler:

Replace the error with:
Code:
c.getPlayer().getMap().broadcastMessage(chr, CField.showHarvesting(c, item.getItemId()), false);
ReactorActionManager:
replace the error with:
Code:
getPlayer().getMap().broadcastMessage(getPlayer(), CField.showHarvesting(c, 0), false);

Enjoy! so like me maybe?
 
Back
Top