Profile Status Page (YEP)

From Yanfly.moe Wiki
Revision as of 01:24, 22 June 2019 by Yanfly (talk | contribs)
Jump to navigation Jump to search

Welcome to the wiki! This is where you can find resources from Yanfly.moe, Ækashics.moe,
VisuStella, Caz Wolf, Fallen Angel Olivia, Atelier Irina, and other affiliated content creators.



Download

System

This is a plugin created for RPG Maker MV.

For help on how to install plugins, click here.

For help on how to update plugins, click here.

Got errors with your RPG Maker MV plugin? Click here.


Masterarbeit Writer

Required Plugins

The following plugins are required in order to use this plugin.

Place the following plugins above this plugin located in the Plugin Manager.

Yanfly Engine Plugins

This plugin is a part of the Yanfly Engine Plugins library.


Introduction

This plugin requires YEP_StatusMenuCore.js.
Place this plugin under YEP_StatusMenuCore.js in the Plugin Manager.

This plugin adds a new 'Profile' command to the Status Menu where the player
can read up on the actor's biography. Pictures can be added in. Text can be
updated mid-game, too!

Notetags

The following notetags are used for actors specifically to alter the profile
page properties for the Status Menu.

Actor Notetags:
  <Profile Text>
   text
   text
  </Profile Text>
  Changes the profile text from the default profile text to the text used in
  between the two notetags. You can use text codes for the text here. Word
  wrap is not supported.

  <Profile Image: filename>
  If you wish to associate a profile image for the actor, replace 'filename'
  with the filename of a picture located in your img/pictures folder. Do not
  include the file extension. If your image is Aldo.png, just use 'Aldo' and
  do not include the '.png' extension.

  <Profile Image Align: Left>
  <Profile Image Align: Center>
  <Profile Image Align: Right>
  If you wish to use a different alignment from the one in the plugin's
  parameter settings, you can use these notetags. If you use a nonexistant
  word, then the right alignment will be decided by default.

Plugin Commands

The following plugin commands can be used to alter an actor's profile page.

Plugin Commands:

ClearProfileText actorId
This will clear out all of actorId's profile text.

AddProfileText actorId text
This will add to actorId's profile text the line of text.

ProfileTextLine lineIndex actorId text
This will change the specific lineIndex of the profile text for actorId to
display a specific text. For example, if you wish to the 50th line of the
profile text for actor 3 to 'Hello World', you'll write this out as the
plugin command:
ProfileTextLine 49 3 Hello World

ProfileImage actorId filename
This will change the profile image for actorId to filename without the file
extension. For example, if you wish to change actor 3's profile image to
Aldo.png, you'll write out this as the plugin command:
ProfileImage 3 Aldo

ProfileImageAlign actorId align
This will change the profile image alignment for actorId. Replace 'align'
with 'left', 'center', or 'right' without the quotes. If a nonexistant word
is used for the alignment, then the right alignment will be used. If you
wish to make the image aligned to the left for actor 3, you'll use:
ProfileImageAlign 3 Left

Changelog

Version 1.01:
- Updated for RPG Maker MV version 1.5.0.

Version 1.02:
- Fixed a bug twhere the status window was not calling the right arguments.

Version 1.01:
- Updated for RPG Maker MV version 1.1.0.

Version 1.00:
- Finished Plugin!