Adny
Posting Freak
Posts: 1,766
Threads: 6
Joined: Mar 2012
Reputation:
173
|
RE: Adding Mementos help?
Issue 1:
The callback syntax for your function "GetNoticeQuest" isn't correct. You have:
(string &in asEntity, int alState)
when it should be:
(string &in asParent, string &in asChild, int alState)
Issue 2:
This part:
AddQuest("getnoticequest", "GetNoticeQuest");
isn't consistant with the .lang file; the name of the quest in the lang file is "NoticeQuest". Try this instead:
AddQuest("noticequest", "NoticeQuest");
Issue 3:
Make sure you only have 1 category named Journal, and not multiple (in the past I've seen people accidentally make multiple journal categories for different types of entries).
Hope that helped!
I rate it 3 memes.
(This post was last modified: 09-24-2012, 05:17 AM by Adny.)
|
|
09-24-2012, 05:15 AM |
|