• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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