Help me !!

01/06/2019 23:45 mirdad#1
How do I change the title name?

Example: [Korean Only] Becomes [My Tittle]
01/07/2019 03:51 x123x123x#2
..\Atlantica\LANG\ENG\TextMgr\TextMgr_Item_ENG.ntx
File with the description of items (text).
01/08/2019 10:03 mirdad#3
Quote:
Originally Posted by x123x123x View Post
..\Atlantica\LANG\ENG\TextMgr\TextMgr_Item_ENG.ntx
File with the description of items (text).


I mean the title name like this is master ... How do you change the name of the tittle?

[Only registered and activated users can see links. Click Here To Register...]
01/08/2019 13:24 x123x123x#4
I will try to explain where this text comes from.

First go to the ..\Atlantica\Item\Data\ItemTypeTitle.ndt file:

UniqueNameNameTextNumCodeImageFileImageFontGradeCodeIsShowItemFuncFuncParamTitleTextNumMakeSkillMakeSkillLevelTradeListbUseWorkproductUnitMaterialToolExplain
900타이틀:용궁지킴이2109NULL1061HIGH1USE_CHARTITLE04248000101NULLNULL523
901타이틀:곰돌이2110NULL1061HIGH1USE_CHARTITLE14249000101NULLNULL523

In the table we are interested in 3 columns:
NameTextNum
TitleTextNum
Explain

Now let's try to find these values in the text Manager.
(line numbers to match)
The first file we are interested in is the names of the items.
..\Atlantica\LANG\ENG\TextMgr\TextMgr_Item_ENG.ntx

find in it the lines from column NameTextNum
(In this example, lines 2109 and 2110)

2109Title: Sea King's Guardian 1st260
2110Title: Cubbie 1st260

Next, we are interested in column TitleTextNum and where to look for the file.
The file is located there in the text Manager:
..\Atlantica\LANG\ENG\TextMgr\TextMgr_TextMgr_ENG. ntx

find in it the lines from column TitleTextNum
(In this example, lines 4248 and 4249)

4248Sea King's Guardian 1st269
4249Cubbie 1st269

Next, we are interested in column Explain and where to look for the file.
The file is located there in the text Manager:
..\Atlantica\LANG\ENG\TextMgr\TextMgr_ItemHelper_E NG.ntx

find in it the lines from column Explain
(In this example, lines 523)

523Effect: Increases attack power and defense for 50 mins. 2.33154
Both titles have the same effect, so they refer to the same description.

Result:
Variable NameTextNum used to name of the item.
Variable TitleTextNum used to name in the interface window.
Variable Explain used to description of the item when you hover over it.

PS Probably if you change only the text, it is enough to change it on the client side of the game.
01/08/2019 18:16 mirdad#5
thank you I was helped by the tutorial you gave ... thank you master