Yesterday i post a problem with my offline buffer sellers ,i was just forgot 1line into offlinetradetables.
NOW my problem is so AKWARD!! The code is 100% functional !
I use 2databases in navicat 1 for testing and 1 clean( no1 name=test and no2 name=main server)
(*1 serverfiles with 2 databases , so the code is the same*)
Problem: In my code seller changes name color & tittle when selling buffs(like offline shops) . & when he stop selling it return into normal.
-In my test database everything works perfect , when buffer sells automatically changes colors & tittle .Also when stop sell return everything to normal.
BUT in my main server database isn't even save the seller as result player changes name color and tittle without get back to previous (i use the same table , even with copy paste the table isn't working)
2 clients:
StyleA: Original client
test1: Unity client
Monster kills are displayed correctly on both clients. Soon it will be possible to kill mobs in a party on 2 different clients
I apologize for my incompetence. The ability to trade is limited only for builder 1. Ordinary characters can trade with each other, and this has nothing to do with auto loot.)
Question
Irrelevant
Yesterday i post a problem with my offline buffer sellers ,i was just forgot 1line into offlinetradetables.
NOW my problem is so AKWARD!! The code is 100% functional !
I use 2databases in navicat 1 for testing and 1 clean( no1 name=test and no2 name=main server)
(*1 serverfiles with 2 databases , so the code is the same*)
Problem: In my code seller changes name color & tittle when selling buffs(like offline shops) . & when he stop selling it return into normal.
-In my test database everything works perfect , when buffer sells automatically changes colors & tittle .Also when stop sell return everything to normal.
BUT in my main server database isn't even save the seller as result player changes name color and tittle without get back to previous (i use the same table , even with copy paste the table isn't working)
look Pics here: https://imgur.com/a/abSahbO.
I told you most AKWARD problem, why is that happening only in 1/2 databases ? :/ any thoughts?
i let also code pic + query of table
https://imgur.com/a/kOx2pqt.
query:
-- ------------------------------------------
Edited by Irrelevant-- Table structure for sellbuff_seller_data
-- ------------------------------------------
DROP TABLE IF EXISTS `sellbuff_seller_data`;
CREATE TABLE `sellbuff_seller_data` (
`char_obj_id` decimal(11,0) NOT NULL,
`lastTitle` varchar(16) DEFAULT NULL,
`lastTitleColor` varchar(8) NOT NULL,
`lastNameColor` varchar(8) NOT NULL,
PRIMARY KEY (`char_obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
18 answers to this question
Recommended Posts