Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

Monster Book request[Resolved]

This request has been resolved.

-------------------------------

Script Title:Monster Book

Detailed Description:
In the Monster Book, I want to make a biography page for every monster that can be encountered, but only for it to show pages for monsters that you have seen already.

I need this script to be activated only when the item named "Monster Book" is used, and to be deactivated when the player exits the book. Just like a common event would.

In every page of this book, the page will have this format.

-----------------------------------
| ...........Name of monster............|
---------------------------------------------------------
|..............................................|MaxHp Value |
|..............................................|MaxSp Value |
|..............................................|Strength Value |
|..............................................|Dexterity Value |
|........Picture of the monster........|Agility Value |
|..............................................|Intelligence Value |
|..............................................|Attack Value |
|..............................................|Physical defense Value|
|..............................................|Magical defense Value |
|..............................................|EXP gain value |
----------------------------------------------------------
|.........................Skills the monster has*..................... |
----------------------------------------------------------

*=Optional

I want these pages to be flexible, as in all the values will be replaced with V:# (V representing value name abbreviation and # Representing actual value of V (Example Hp:200))

I also want these pages to use the game's window skin for the window.

While viewing, I want it so that you can flip though the pages (while playing the system's sound for when the cursor is moved) and to be able to exit the book by pressing the Cancel key

Key input format:
Left Arrow Key=Flips page back one (cannot flip back anymore if on page one)
Right Arrow Key=Flips page forward one (cannot flip forward anymore if on last page)
Cancel Key=Exits book

If any additional information is needed, please ask.

Other Scripts I am using (in order):

Party changer by Dargor
viewtopic.php?f=11&t=23508

Super Simple Dash script by Brewmeister
#
# Super Simple Dash - V1
#
# Hold the "Z" key to make the player run
#
# paste in a new script above main
#
# Brewmeister - 12Jan09
#

class Game_Player

alias brew_dash_update update

def update
if Input.press?(Input::A)
@move_speed=5
else
@move_speed=4
end
brew_dash_update
end
end
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top