What does clif->pMoveItem = clif_parse_MoveItem; do?

mybitch

New member
Messages
291
Points
0
Location
Prontera
I'm having this storage error after getting items from the storage and spits out 0x0000 packets, 2 bytes received.

I've tried to add it in the packets.h with this entry

packet(0x0000,2);

The disconnection issue was solved but can't get any items from storage.

Should it be the code in packets.h must be like this?

packet(0x0000,2,clif->pMoveItem,2);

I've tried to used pTakeItem but it always say that you can't get the item.

 
you probably have wrong packets specified for these two here:

clif->pMoveToKafra (this packet is for putting an item INTO the storage)

clif->pMoveFromKafra (this packet is for receiving an item FROM the storage)

Since you did not leave any client version you are using, no one can really help you.

 
Back
Top