ANTDMARSHALL'S PROFILE

Search

Filter

Retcon Library: Journal

Hey sorry to bother you McDohl, but I was wondering if it is possible to add rewards for the quests along with icons for certain quests? Also how could I add a icon of the npc to show who to return the quest to?

I have gotten it to show a gold icon in the message box with this add in.
draws the journal window.

def create_journal_display
entry = ""
if @page.maxpage == 0
entry = RETCON::Journal::NoEntries
else
entry = $game_party.journal.to_str
draw_icon(361, 5, 119)

and the icon of one npc with

#the titlefixins
def update
super
@pagetitle.change_page
if (@pagetitle.changeit == true)
refresh
@pagetitle.changeit = false
end
end

def create_title
title = ""
if @pagetitle.maxpage == 0
title = RETCON::Journal::NoTitle

else
title = $game_party.journal.to_str
draw_icon(528, 15, 1)


but my problem is doing it this way causes those icons to show up on every quest page that I add and I can't change the npc icon or the icon for what rewards I want. Any suggestions?

Pages: 1