Jump to content
  • 0

Lot of problem with quests


acbx

Question


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  18
  • Reputation:   0
  • Joined:  05/17/20
  • Last Seen:  

Helo

 

Need some help with "quest things"

 

When i execute my hexed 2018-06-21

image.png.67ea869f2a4e1a1c94eb7752100be915.png

 

When i already have a quest in game

image.png.3885429f40eda22ba8b073ef93aa3792.png

image.png.52683c5b1cdfa0d7ed1687ad31cc57f3.png

image.png.2f427829cd70629f272537f7823ac248.png

image.png.1a6a55fa6f7613582c23565958898b49.png

image.png.12e8e637141a1f492c0011aefde32756.png

image.png.6fab8f0d14754244f4b547424993f92f.png

 

The quest become "Unknown Quest"

image.thumb.png.12130a45af30530d7cbc9e8a86c9a273.png

 

My diff options and lua files

image.png.4092f851118513ba5e6c87c6dab642fc.png

image.png.fd1c2f16fa861bef4d6d98e807930d1b.png

image.png.894da6c75eddc7e44d4f6b053f26c33c.png

 

I'm using llchrisll data/System folder and i don't know what's going on... I need help ? 

 

 

OnGoingQuestInfoList.lub RecommendedQuestInfoList.lub

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  105
  • Topics Per Day:  0.02
  • Content Count:  446
  • Reputation:   229
  • Joined:  03/20/12
  • Last Seen:  

Try using these for 2018-06-21 client
 

OngoingQuestInfoList.lub

RecommendedQuestInfoList.lub

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  18
  • Reputation:   0
  • Joined:  05/17/20
  • Last Seen:  

Those files didn't work ? 

And i forgot to show the "bug" in quest box in game

The quest's description doesn't appear

 

I really need some help here...

image.thumb.png.46fd560b6955867ed823c9def66c5279.png

 

I think the error is on this script below

data\luafiles514\lua files\datainfo\questinfo_f.lub

function RecommendedQuestInfoLoad()
	for questID, table in pairs(RecommendedQuestInfoList) do
		if nil == table.Title then
			table.Title = ""
		end
		if nil == table.IconName then
			table.IconName = ""
		end
		if nil == table.Summary then
			table.Summary = ""
		end
		if nil == table.BgName then
			table.BgName = ""
		end
		if nil == table.NpcSpr then
			table.NpcSpr = ""
		end
		if nil == table.NpcNavi then
			table.NpcNavi = ""
		end
		if nil == table.NpcPosX then
			table.NpcPosX = 0
		end
		if nil == table.NpcPosY then
			table.NpcPosY = 0
		end
		InsertRecommededQuestInfo(questID, table.Title, table.IconName, table.Summary, table.BgName, table.NpcSpr, table.NpcNavi, table.NpcPosX, table.NpcPosY)
		if nil ~= table.QuestInfo1 then
			for k, v in pairs(table.QuestInfo1) do
				AddRecommendedQuestInfo(questID, 0, v)
			end
		end
		if nil ~= table.QuestInfo2 then
			for k, v in pairs(table.QuestInfo2) do
				AddRecommendedQuestInfo(questID, 1, v)
			end
		end
		if nil ~= table.QuestInfo3 then
			for k, v in pairs(table.QuestInfo3) do
				AddRecommendedQuestInfo(questID, 2, v)
			end
		end
	end
end

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...