Jump to content
New account registrations are disabed. This website is now an archive. Read more here.
Sign in to follow this  
isaacsol

Script Help

Recommended Posts

How do i make it so that when i press Shift it opens the quest window which is opened by this piece of code:

 

$scene = Scene_Quests.new

Share this post


Link to post
Share on other sites

I would do it with a common event like this:

queststuffiq6.png

 

I'm not sure I understand what you want though.

Share this post


Link to post
Share on other sites

I'd have to look it up again, but I saw it just the other day...I can't rmember what it was, though...Input.new I think, but I don't remember how to call it exactly...I'll look it up later.

Share this post


Link to post
Share on other sites

You mean like this?

class Scene_Map
 alias zeriab_shift_update update
 def update
zeriab_shift_update
if Input.trigger?(Input::A)
  $scene = Scene_Quests.new
end
 end
end

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...