Quote:
Originally Posted by 12k
What packets are needed to be sent after a teleport other then the general packet type 86 and Map Status (1110). The reason I ask is because the market stall button to abandon a stall isnt appearing. Believe that was part of a packet needed to be sent. I thought it was map status. But apparently not.
|
You're probably not handling the vending request properly.
The client when trying to vend will send a genData packet with the CreateBooth subtype (111 in current patch, not sure if it ever changed). You then perform all server side checks (send the new carpet spawn packet, etc) and once it's all confirmed you edit the received packet's Data1 offset to the new carped UID and send it back to the client. Note: Data1 is offset 8 <_<
Just to confirm... The actual issue here is the leave stall button not showing, correct? Just curious as you're talking about a teleport packet which shouldn't be needed at all here <_<
The actual packet received when you click the stop vending button is the GetSurroundings general data subtype (114... again current patch could be different in other ones).