[RMVX][RGSS2] MODALGEBRA QUEST SCRIPTING - SIDE QUEST WINDOW
Posts
Pages:
1
Hey guys,
I'm trying to get an additional scene to appear in modern_algebra's Quest Journal scripting. I figured everything should work if I just simply duplicated what he did for the active_quests option except made sure to label it activeside_quests.
I don't have any problems when it loads up, actually I use to get a Syntax Error, but I resolved that. But now I get an error when I open up the 'Quests' sub-menu in the Menu options that states the following:
Script 'Quest Journal' line 586: NameError occurred.
uninitialized constant ModAlg_QuestData::ACTIVE_SIDE_QUEST_ICON
Anyone know what's going on here that I'm just not seeing???
Thought I had it figured out, turned out I made a boo-boo and that boo-boo took error-presidency over this one. Fixed that boo-boo and now I'm back to this.
I'm trying to get an additional scene to appear in modern_algebra's Quest Journal scripting. I figured everything should work if I just simply duplicated what he did for the active_quests option except made sure to label it activeside_quests.
I don't have any problems when it loads up, actually I use to get a Syntax Error, but I resolved that. But now I get an error when I open up the 'Quests' sub-menu in the Menu options that states the following:
Script 'Quest Journal' line 586: NameError occurred.
uninitialized constant ModAlg_QuestData::ACTIVE_SIDE_QUEST_ICON
def refresh (category_index = 0)
contents.clear
# Retrieve Icon Bitmaps
bitmap = Cache.system("Iconset")
icon_index = ModAlg_QuestData::ACTIVE_QUEST_ICON
active_rect = Rect.new(icon_index % 16 * 24, icon_index / 16 * 24, 24, 24)
icon_index = ModAlg_QuestData::COMPLETE_QUEST_ICON
complete_rect = Rect.new(icon_index % 16 * 24, icon_index / 16 * 24, 24, 24)
icon_index = ModAlg_QuestData::FAILED_QUEST_ICON
failed_rect = Rect.new(icon_index % 16 * 24, icon_index / 16 * 24, 24, 24)
icon_index = ModAlg_QuestData::ACTIVE_SIDE_QUEST_ICON
activeside_rect = Rect.new(icon_index % 16 * 24, icon_index / 16 * 24, 24, 24)
# Combine the three icons for the All Icon
Anyone know what's going on here that I'm just not seeing???
Thought I had it figured out, turned out I made a boo-boo and that boo-boo took error-presidency over this one. Fixed that boo-boo and now I'm back to this.
Pages:
1













