Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

WC - Avatar Shop Trade Fix

Joined
Jun 28, 2006
Messages
285
Reaction score
165
Most WC servers disable trading because of "NetWork Error". The fix is stupid-simple. Just simply create a script and run the following query every second (cron job, probably):

Code:
UPDATE `GiftMsg` SET `No`=`GiftItemNo`

That's literally it. As long as you run this query every second, you're set. There's probably a way to fix this with hex editing the server files, but this at least keeps them a bit more vanilla.

PS: this is a crappy way to fix it, but it fixes it nonetheless. Feel free to find your own workaround.

Cheers.
 
Last edited:
Junior Spellweaver
Joined
Dec 20, 2004
Messages
143
Reaction score
63
Most WC servers disable trading because of "NetWork Error". The fix is stupid-simple. Just simply create a script and run the following query every second (cron job, probably):

Code:
UPDATE `GiftMsg` SET `No`=`GiftItemNo`

That's literally it. As long as you run this query every second, you're set. There's probably a way to fix this with hex editing the server files, but this at least keeps them a bit more vanilla.

more easy create a mysql tiggert on insert make same querry
 
Joined
Jun 28, 2006
Messages
285
Reaction score
165
Most WC servers disable trading because of "NetWork Error". The fix is stupid-simple. Just simply create a script and run the following query every second (cron job, probably):

Code:
UPDATE `GiftMsg` SET `No`=`GiftItemNo`

That's literally it. As long as you run this query every second, you're set. There's probably a way to fix this with hex editing the server files, but this at least keeps them a bit more vanilla.

more easy create a mysql tiggert on insert make same querry

This would be the answer except I believe triggers were introduced after OLD_PASSWORD was depreciated/removed, which means unless you’re running a passwordless db (don’t), don’t think this is possible.
 
Back
Top