
OK. I have found a work around. It is not perfect but it will have to do. The work around is have a common event and have a "SceneManager.call(Scene_Quest)" script call for it to work.Ah I see. Well, I love your system and am going to use it for my project.
However I have come up to a problem. I have tried all I can think of but nothing works.
What I'm trying to do is add Modern Algebra's Quest Journal, as a test to see if I can
Link bellow:
http://rmrk.net/index.php/topic,45127.0.html
But When I think I got it right it just not work.
This is the error I got
error message HE Main Menu.png![]()
I have it set up like this:
:quest => ["Quests", "view current, repeatable and complete quests", 118, true, false],
I even tried changing :quest to :quest_journal, :questjournal, :quest_log, :questlog, :quest_scene and :scene_quest Then I tried renaming them with Capital letters but nothing worked.
I had even did this:
:quest => ["Quests", "view current, repeatable and complete quests", 118, true, false, scene_quest],
:quest => ["Quests", "view current, repeatable and complete quests", 118, true, false, quest_scene],
But with those two I got another completely different error because I had "scene_quest" and "quest_scene" at the end.
I really need some help here.
I AM using a different quest system, BUT from what I can see the way it is called is the same., but I just want to see if I can add new commands to the main menu.
Hey man, I am new to all this coding stuff but could you tell me where you put the modified lines, I cannot find it.OK. I have found a work around. It is not perfect but it will have to do. The work around is have a common event and have a "SceneManager.call(Scene_Quest)" script call for it to work.
Then in the settings script I have to have ":quest => ["Quests", "view current, repeatable and complete quests", 118, true, false, Common Event ID],"
Is there no other way around the problem of a custom command not working?
I'm glad you found it. I was on holidays and thus I wasn't able to log into it.Hey man, I am new to all this coding stuff but could you tell me where you put the modified lines, I cannot find it.
Edit: Well I found it but im still getting errors, it appears it doesn't like this part: Common Event quests. It says it is expecting ( or {
I found where to put this:I'm glad you found it. I was on holidays and thus I wasn't able to log into it.
I am not sure why you are getting that error... as from what I remember it worked for me... But then I found better way that does not require common events. I had tested it and it seems to be working perfectly. Instead of having a common event and everything, you put what is below in instead and it should work for you.I found where to put this:
:quests => ["Journal", "View your journal.", 117, true, true, Common Event [quests]],
And I created a common event called quests with this line in it:
SceneManager.call(Scene_Quest)
but i am still getting an error expecting ( or { on that first line in the Settings script. Do you know what is wrong? I tried many different call codes but nothing works, I sometimes manage to get different errors but I cant seem to call the Common even properly.
Yes it worked, thank you, but i think my error was that I put the quest script after the menu script, thats why it was giving error lol. I am so noob at scripting lol, but thank you for the helpI am not sure why you are getting that error... as from what I remember it worked for me... But then I found better way that does not require common events. I had tested it and it seems to be working perfectly. Instead of having a common event and everything, you put what is below in instead and it should work for you.
:quests => ["Quests", "Track your quest progress.", 117, true, false, Scene_Quest],