Problem with Add new quest

01/31/2021 07:59 tubeo#1
Hi, I've add some new quest to my server, everything work well except the title of quest in quest list, it's only appear bank (0/1) (as picture). it will be great if anyone know how to fix this issue, thank in advance!
01/31/2021 09:30 OKeks#2
The correspondenting text is located in textquest_speech&name.txt as you can see it in the guide.
textquest_speech&name.txt
Code:
1	SN_QNO_TEST_QUEST	0	0	0	0	0	0	Test quest	0	0	0	0	0	0	0	
1	SN_PAY_QNO_TEST_QUEST	0	0	0	0	0	0	Test quest	0	0	0	0	0	0	0	
1	SN_CON_QNO_TEST_QUEST	0	0	0	0	0	0	Hunt 20 Mangyang (%d)	0	0	0	0	0	0	0
If you only see a blank title you might have a wrong identifier or an issue with formatting.
Please check your DB/lua entries, they should match to these strings...

For formatting pls follow the instructions you found in the official thread. If you want to check for formatting issues, pls download notpad++ .
If you google for "notpad++ display end of line" you will find a guide how to enable all chars. It should look like below:
[Only registered and activated users can see links. Click Here To Register...]

Take care that you see the same amount of tabulators in every line and a CRLF at the end. If you only see LF it will not work with the client. LF is basically a new textline for silkroad and not the end of line.

But please check your strings before, the client will still load it, even if you are using wrong stuff in your textfiles.
01/31/2021 12:32 tubeo#3
Quote:
Originally Posted by OKeks View Post
The correspondenting text is located in textquest_speech&name.txt as you can see it in the guide.
textquest_speech&name.txt
Code:
1	SN_QNO_TEST_QUEST	0	0	0	0	0	0	Test quest	0	0	0	0	0	0	0	
1	SN_PAY_QNO_TEST_QUEST	0	0	0	0	0	0	Test quest	0	0	0	0	0	0	0	
1	SN_CON_QNO_TEST_QUEST	0	0	0	0	0	0	Hunt 20 Mangyang (%d)	0	0	0	0	0	0	0
If you only see a blank title you might have a wrong identifier or an issue with formatting.
Please check your DB/lua entries, they should match to these strings...

For formatting pls follow the instructions you found in the official thread. If you want to check for formatting issues, pls download notpad++ .
If you google for "notpad++ display end of line" you will find a guide how to enable all chars. It should look like below:
[Only registered and activated users can see links. Click Here To Register...]

Take care that you see the same amount of tabulators in every line and a CRLF at the end. If you only see LF it will not work with the client. LF is basically a new textline for silkroad and not the end of line.

But please check your strings before, the client will still load it, even if you are using wrong stuff in your textfiles.
thank you, i will try to arrange these file
02/01/2021 12:29 tubeo#4
Well fixed. The problem is, in my opinion if DB and client not match game will crash, but in this case, i miss SN_ before QNO (in questdata.txt) but game still start normal.

Noting for someone have same issue.
02/03/2021 16:45 tubeo#5
Again i have problem with add new quest... My reward box don't show items rewards (please take a look at picture) But i still have items reward. Can anyone tell me how to fix it please, thank you/
02/03/2021 20:48 OKeks#6
Please check your [_RefQuestReward] table and turn "IsBasicReward" and "IsItemReward" to 1.
02/03/2021 22:21 tubeo#7
Quote:
Originally Posted by OKeks View Post
Please check your [_RefQuestReward] table and turn "IsBasicReward" and "IsItemReward" to 1.
It's working well now, thank again bro :)