View Single Post
  #1  
Old 02-24-2020, 09:16 PM
AndarWeham
Fire Beetle
 
Join Date: Dec 2012
Posts: 4
Default Fatal Error for task state

So I've been adding some custom tasks to my server, and it's been going well, until now. I created some new tasks, using the same template I used for previous tasks which have worked. Now, I'm receiving these errors:
Code:
[TASKS]Fatal error in character [692868] task state. Activity [0] for Task [300] either missing from client state or from task.
[TASKS]Fatal error in character [692868] task state. Activity [0] for Task [301] either missing from client state or from task.
I created seven new tasks, ranging from taskid 297 to 303. All the others work the way they are supposed to, but 300 and 301 throw the errors. I've also tried adding a new one at 304 and it didn't work either.

Here is the database information:
Code:
TASKS table export
id, type, duration, duration_code, title, description ,reward, rewardid, cashreward, xpreward, rewardmethod, minlevel, maxlevel, repeatable, faction_reward, completion_emote
300	2	0	0	Pestering the Hags	[1,The hags are pestering the guests. Please take care of them for us.][2, You've done great work. Head back to Ghoul Hunter for your reward!]	Rough Defiant Feet	0	0	15000	2	15	30	0	0	
301	2	0	0	Where Are The Werebats?	[1,The howling of the werebats keep the guests up at night. Please, find them and get them out of the house!][2, You've done great work. Head back to Ghoul Hunter for your reward!]	Rough Defiant Head	0	0	15000	2	15	30	0	0
Code:
TASK_ACTIVITIES table export
taskid, activityid, step, activitytype, target_name, item_list, skill_list, spell_list, description_override, goalid, goalmethod, goalcount, delivertonpc, zones, optional
300,0,1,2,,,-1,0,Kill 10 Festering Hags,63074,0,10,0,63,0
300,1,1,2,,,-1,0,Kill the Undead Barkeep,63010,0,1,0,63,0
300,2,1,2,,,-1,0,Kill the Undead Brewer,63017,0,1,0,63,0
300,3,2,4,Ghoul Hunter,,-1,0,Talk to Ghoul Hunter to receive your reward!,0,2,1,0,63,0
301,0,1,2,,,-1,0,Kill 10 Werebats,1014,1,10,0,63,0
301,1,2,4,Ghoul Hunter,,-1,0,Talk to Ghoul Hunter to receive your reward!,0,2,1,0,63,0
The error doesn't make sense to me, as I do have the activities ordered by ID starting with 0.

Any help would be greatly appreciated. Thanks!
Reply With Quote