[Help] with Warehouse issue

04/20/2015 01:11 Gamer Online#1
So I've got an issue with (Warehouse's / VIP / Slash) not allowing me to place items into them. instead the item just stay in my inventory.

asking if anyone could look over the code below and give me some results to fixing this problem.

Thanks in advance


..../Gamepackets/warehouse


....Game/Conquerstructures/warehouse



...NPC



..../ Packethandler


..../ Packethandler



Any clue will help Thanks.
04/20/2015 23:33 Novakhan#2
Here's my clue: Delete that crap, close your computer and throw it from the CN Tower's roof.
04/20/2015 23:39 abdoumatrix#3
xD Emulator Source :D

----------------------
try breakpoint with debug
04/20/2015 23:56 Gamer Online#4
First Thanks for moving this to its right section.

@Novakhan - cool story bruh but id rather not.

@abdoumatrix - Yes you are correct this is Emulator Source




if anyone needs more information to help me solve this problem please let me know. thanks
04/21/2015 03:23 abdoumatrix#5
Breakpoint is ur answer
04/21/2015 12:27 teroareboss1#6
public UInt32 NpcID
{
get { return BitConverter.ToUInt32(Packet, 8); }
set { WriteUInt32(value, 8, Packet); }
}


public UInt32 Count
{
get { return BitConverter.ToUInt32(Packet, 24); }
set
{
if (value > 20)
throw new Exception("Invalid Count value.");
Byte[] packet = new Byte[8 + 28 + (76 * value)];
WriteUInt16((UInt16)(packet.Length - 8), 0, packet);
WriteUInt16(1102, 2, packet);
WriteUInt32(NpcID, 8, packet);
WriteUInt32(Type, 12, packet);
packet[13] = Packet[13];
WriteUInt32(value, 24, packet);
Packet = packet;
}
}
04/21/2015 20:10 Gamer Online#7
@teroareboss1 - changing the values to [8] didnt help its the same as it has been.

i can open the warehouses/slash/vipWH but when i place my item into My VIP Warehouse/ Slash/or any of the warehouse located around CO they just stay into my Inventory and wont transfer into the bank storage.

Note: I've tried depositing money and it worked!
also tried Depositing Items with different Quality like Normal/refine/elite/super 2soc /Bound/Nonbound/Inscribed gear/ and locked / unlocked gear..etc But still nothing help the situation


Now i did add to my main topic the Npc info / packhandler info


Hope someone with a good understanding of the Warehouse can provide some suggestions
04/22/2015 15:42 teroareboss1#8
you're use wrong client. try to update your client. your packet is for new versions.