Main Menu
  • Welcome to The RPG Maker Resource Kit.

[REQUEST] Reading/Book System

Started by Xuroth, August 10, 2007, 10:52:11 PM

0 Members and 1 Guest are viewing this topic.

Xuroth

Hey, I need help with a reading system. Ever play ElderScrolls III: Morrowind? You know how when you picked up a book, it would display text, and provide you with options to Take, Leave, Next Page, Previous Page? IF not, I will give a quick rundown for what I need exactly.

I need a Scene that is divided into 2 frames.

The first frame will on top and will be 4/5 of the screen size (640 x 384). This is where the text is displayed.
The second frame will lie underneath the text window, and will be (640 x 96). THis is the options bar. In the center, I want the options --> (forward page) and <-- (back page) side by side. on the far left is the option take, while on the far right is the option leave.

I want the option take to just add the book to the inventory. I would prefer to call the method by supplying a value, such as $scene = scene_book.new (x) where x would be the book that is to be displayed.

This must be expandable, and I have to add my own text into it. Its ok if it leaves some scripting undone, as I need to fill in some gaps anyways.

Finally, I need an option in the menu called "Books" that would show a list of books held, and by selecting one, it would call the scene_book and display its text. in this case, there would be the options on the far right is cancel and on the far left is drop.

Thanks for anyone who can help me! this is pretty complex, and I doubt that it will be completed, but all Help is appreciated.
Thank you for your time!!

modern algebra

A few questions, do you want the text to be shown on the image of a book, or just in a window. Second, do you want them to show up in the inventory, or just in the book menu. Third, post a design for the book menu. I.e., what you want it to look like.

It's not very complex, so I will be able to do it if you answer those three questions, though I may put it off, as I am currently designing a script (idea by Zeriab) which will be a useful asset in making this script.

Xuroth

#2
I would prefer the text show up on the image of a book, which would be nested inside a window. I would like the item to show up in the inventory as well. would you be able to make it to where the player can just read it from the inventory? that would be preferable... I have limited scripting knowledge, so i assumed it would be easier to just make a custom command...

[spoiler][/spoiler]

I also would like to add a name window at top and a value window (both as shown in design image).

modern algebra

Provide the book image, I don't want to go looking for one.

You can use it from the inventory if you make the item call a common event, and that common event would have something like:

$scene = Scene_Book.new (X)

in it. You would have to make it so the item has no other effect, though.

Xuroth

sorry it took so long, I had to find the images and make this book. the book template image is:

[spoiler][/spoiler]

modern algebra

Thanks. I will get back to you once I am finished the other script.