Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Flyff > Flyff Private Server
You last visited: Today at 15:23

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Why do I create a character showing a question mark? Please help me. Can you help me

Discussion on Why do I create a character showing a question mark? Please help me. Can you help me within the Flyff Private Server forum part of the Flyff category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2014
Posts: 207
Received Thanks: 4
Why do I create a character showing a question mark? Please help me. Can you help me

Why do I create a character showing a question mark? Please help me. Can you help me to display Chinese in China? Database please help me modify it to support any country's display


mobai520 is offline  
Old 06/23/2018, 08:52   #2
 
elite*gold: 60
Join Date: Sep 2017
Posts: 424
Received Thanks: 138
For what is the Download Link ? xD

Do you mean/want Multi-Language ?
Dr. Peacock is offline  
Old 06/23/2018, 15:00   #3
 
elite*gold: 0
Join Date: Aug 2014
Posts: 207
Received Thanks: 4
Quote:
Originally Posted by Dr. Peacock View Post
For what is the Download Link ? xD

Do you mean/want Multi-Language ?
Yes, this database does not support the languages of any country except English
mobai520 is offline  
Old 06/23/2018, 16:29   #4
 
elite*gold: 60
Join Date: Sep 2017
Posts: 424
Received Thanks: 138
Quote:
Originally Posted by mobai520 View Post
Yes, this database does not support the languages of any country except English
For what you need the Database ? o:
Multi-Language = Resource / Source....
Database = SAVE PLAYER: Position,Items, etc.
You want to save the Selected Language ? -> Neuz.ini ?
Dr. Peacock is offline  
Old 06/23/2018, 18:00   #5
 
elite*gold: 0
Join Date: May 2018
Posts: 14
Received Thanks: 2
I guess he means that if he types something in chinese a "?" appears because the game dont support chinese letters
correct me if im wrong
_Suffer is offline  
Old 06/24/2018, 09:49   #6
 
elite*gold: 0
Join Date: Aug 2014
Posts: 207
Received Thanks: 4
Quote:
Originally Posted by _Suffer View Post
I guess he means that if he types something in chinese a "?" appears because the game dont support chinese letters
correct me if im wrong
Yes, I am in China. The Chinese language database does not support Chinese language in China. There are question marks in the creation of Chinese and Chinese. English can be displayed normally.

Quote:
Originally Posted by Dr. Peacock View Post
For what you need the Database ? o:
Multi-Language = Resource / Source....
Database = SAVE PLAYER: Position,Items, etc.
You want to save the Selected Language ? -> Neuz.ini ?
Yes, I need a database to support any country's language, I use Chinese in Chinese, but when I create a character to enter the game, there is a question mark. Can you help me?
mobai520 is offline  
Old 06/25/2018, 00:03   #7
 
xTwiLightx's Avatar
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,739
Received Thanks: 1,669
Use NVARCHAR as data type for fields and variables that contain names like
Code:
CHARACTER_TBL.dbo.m_szName
or
Code:
GUILD_TBL.dbo.m_szGuild
and use the "N" prefix for string literals in insertion/updates inside stored procedures or direct queries as well:
Code:
update .... set someColumn = N'测试'
xTwiLightx is offline  
Old 06/25/2018, 15:31   #8
 
elite*gold: 0
Join Date: Aug 2014
Posts: 207
Received Thanks: 4
Quote:
Originally Posted by xTwiLightx View Post
Use NVARCHAR as data type for fields and variables that contain names like
Code:
CHARACTER_TBL.dbo.m_szName
or
Code:
GUILD_TBL.dbo.m_szGuild
and use the "N" prefix for string literals in insertion/updates inside stored procedures or direct queries as well:
Code:
update .... set someColumn = N'测试'
I can't find it and modify it. Please help me. . Thank you
mobai520 is offline  
Old 06/25/2018, 16:41   #9
 
xTwiLightx's Avatar
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,739
Received Thanks: 1,669
Quote:
Originally Posted by mobai520 View Post
I can't find it and modify it. Please help me. . Thank you
I already did.

You will need to re-create the tables or do some migration work in order to achieve the change of data.

Code:
create table [dbo].[tableName]
  szName nvarchar(32),
  ... ...
Code:
alter proc [dbo].[procedureName]
  @sz_Name nvarchar(32),
  ... ...
as
I guess you should get what you need to change.
xTwiLightx is offline  
Old 06/26/2018, 14:40   #10
 
elite*gold: 0
Join Date: Aug 2014
Posts: 207
Received Thanks: 4
Quote:
Originally Posted by xTwiLightx View Post
I already did.

You will need to re-create the tables or do some migration work in order to achieve the change of data.

Code:
create table [dbo].[tableName]
  szName nvarchar(32),
  ... ...
Code:
alter proc [dbo].[procedureName]
  @sz_Name nvarchar(32),
  ... ...
as
I guess you should get what you need to change.
Sorry, I just tried to execute the code, shows an error, I am a newcomer does not understand this database, the above connection is my upload database is also downloaded from this forum, you can help me modify it to upload to me, thank you you
mobai520 is offline  
Old 06/26/2018, 14:52   #11
 
xTwiLightx's Avatar
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,739
Received Thanks: 1,669
Quote:
Originally Posted by mobai520 View Post
Sorry, I just tried to execute the code, shows an error, I am a newcomer does not understand this database, the above connection is my upload database is also downloaded from this forum, you can help me modify it to upload to me, thank you you
This was just some example code to show what is needed to be changed.

Better take a clean database by using the creation scripts and change "varchar" to "nvarchar" when appropriate (which should be character and guild names only, I guess).
xTwiLightx is offline  
Old 06/26/2018, 20:13   #12
 
elite*gold: 0
Join Date: Aug 2014
Posts: 207
Received Thanks: 4
Quote:
Originally Posted by xTwiLightx View Post
This was just some example code to show what is needed to be changed.

Better take a clean database by using the creation scripts and change "varchar" to "nvarchar" when appropriate (which should be character and guild names only, I guess).
Well, thanks for your help, I'll try it.
mobai520 is offline  
Old 08/05/2018, 12:23   #13
 
elite*gold: 0
Join Date: Aug 2014
Posts: 207
Received Thanks: 4
Quote:
Originally Posted by Dr. Peacock View Post
For what is the Download Link ? xD

Do you mean/want Multi-Language ?
Yes, such as Chinese Mandarin
mobai520 is offline  
Reply


Similar Threads Similar Threads
PLEASE PLEASE PLEASE PLEASE PLEASE PLEASE PLEASE PLEASE
06/21/2011 - Metin2 Private Server - 5 Replies
HELP WITH THIS PLEASE ON MY DEDICATED SERVER :-( http://www.youtube.com/watch?v=UyKOTLb960Q log_file_delete_old: stat: No such file or directory connect: Connection refused Timed out Connection refused



All times are GMT +2. The time now is 15:23.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.