[HELP] Message Box is showing to all players.

07/20/2020 23:53 deleonrenz024#1
Hi, this message box is shown to all players in random times and many other like the message "in refuse trading".

Somebody experienced this before?

[Only registered and activated users can see links. Click Here To Register...]
07/21/2020 01:04 cookie69#2
Quote:
Originally Posted by deleonrenz024 View Post
Hi, this message box is shown to all players in random times and many other like the message "in refuse trading".

Somebody experienced this before?

[Only registered and activated users can see links. Click Here To Register...]
Just trace back the message to find where it gets sent from the server to players :thinking:
In V15:
IDS_TEXTCLIENT_INC_000448 You cannot add into or remove items from the trading window anymore after the first confirmation.
And it leads to CDPSrvr::OnTradePut
......

Check if you changed something in your code..basically that error message is sent when the function pUser->AddTradePutError() is called, so check where it is called in all your solution files.
07/21/2020 18:22 Sedrika#3
Quote:
Originally Posted by cookie69 View Post
Just trace back the message to find where it gets sent from the server to players :thinking:
In V15:
IDS_TEXTCLIENT_INC_000448 You cannot add into or remove items from the trading window anymore after the first confirmation.
And it leads to CDPSrvr::OnTradePut
......

Check if you changed something in your code..basically that error message is sent when the function pUser->AddTradePutError() is called, so check where it is called in all your solution files.
The reason for this error to happen is due to a packet mismatch between client and server. Has nothing to do with trading in general.
07/21/2020 19:03 cookie69#4
Quote:
Originally Posted by Sedrika View Post
The reason for this error to happen is due to a packet mismatch between client and server. Has nothing to do with trading in general.
I would say that too, it does not make any sens it that was related to trading as that trading error would never happen, it would just happen if a cheater tried to put items on the trade window after someone has already confirmed his trading, and even doing this, only the cheater would receive the error message...
I hope "devs" nowadays try at least to do basic things in order to investigate about an issue...
07/25/2020 08:09 deleonrenz024#5
Quote:
Originally Posted by cookie69 View Post
I would say that too, it does not make any sens it that was related to trading as that trading error would never happen, it would just happen if a cheater tried to put items on the trade window after someone has already confirmed his trading, and even doing this, only the cheater would receive the error message...
I hope "devs" nowadays try at least to do basic things in order to investigate about an issue...
I've tried what you say on the first post before posting here. I'm still learning. Thank you.