Forkz
Intermediate OT User
- Joined
- Jun 29, 2020
- Messages
- 495
- Solutions
- 15
- Reaction score
- 121
Hi otlanders,
After I added the system below, my "player:showTextDialog" stopped working, I did the tests and that is really the reason, but I didn't find out why.
The problem is in this code below, if anyone can help me, I would be very grateful.
If I remove the //duration part, the player:showTextDialog works normally, but if this part of the script is activated, it does not work.
OTClient Error
packet
After I added the system below, my "player:showTextDialog" stopped working, I did the tests and that is really the reason, but I didn't find out why.
Code:
https://github.com/OTAcademy/otclientv8/pull/29
Code:
https://github.com/Oen44/tfs-new-decay/commit/f72bde7c08a580c93336d33cbf857b1a008a2764
The problem is in this code below, if anyone can help me, I would be very grateful.
C++:
void NetworkMessage::addItem(const Item* item)
{
const ItemType& it = Item::items[item->getID()];
add<uint16_t>(it.clientId);
//addByte(0xFF); // MARK_UNMARKED
/*if (it.stackable) {
addByte(std::min<uint16_t>(0xFF, item->getItemCount()));
} else if (it.isSplash() || it.isFluidContainer()) {
addByte(fluidMap[item->getFluidType() & 7]);
}
if (it.isAnimation) {
addByte(0xFE); // random phase (0xFF for async)
}*/
if (it.stackable) {
addByte(std::min<uint16_t>(0xFF, item->getItemCount()));
}
else if (it.isSplash() || it.isFluidContainer()) {
addByte(item->getSubType());
}
// duration
if (item->hasAttribute(ITEM_ATTRIBUTE_DURATION) && item->getDuration() > 0) {
if (item->isPickupable() && !item->getContainer()) {
addByte(0x01);
add<uint32_t>(item->getDuration());
addByte(it.stopTime ? 1 : 0);
}
else {
addByte(0x00);
}
}
else {
addByte(0x00);
}
}
If I remove the //duration part, the player:showTextDialog works normally, but if this part of the script is activated, it does not work.
OTClient Error
Code:
ERROR: ProtocolGame parse message exception (121 bytes, 106 unread, last opcode is 0x96 (150), prev opcode is 0xffffffff (-1)): InputMessage eof reached
Packet has been saved to packet.log, you can use it to find what was wrong. (Protocol: 772)
packet
Code:
ProtocolGame parse message exception (121 bytes, 106 unread, last opcode is 0x96 (150), prev opcode is 0xffffffff (-1), proto: 772): InputMessage eof reached
78 00 75 00
96 01 00 00 00 fe 0a 00 00 02 67 00 21 61 75 74 6f 6c 6f 6f 74 0a 21 62 6c 65 73 73 0a 21 62 75 79 0a 21 63 68 61 6e 67 65 73 65 78 0a 21 63 6f 6d 6d 61 6e 64 73 0a 21 66 72 61 67 73 0a 21 6f 6e 6c 69 6e 65 0a 21 70 72 6f 6d 6f 74 69 6f 6e 0a 21 73 61 76 65 6d 65 0a 21 73 65 72 76 65 72 69 6e 66 6f 0a 21 73 70 65 6c 6c 73 0a 21 74 72 61 69 6e 00 00