Welcome to PGMV! My goal is to make it easy for everyone to find and share great plugins for creating amazing games. As a plugin developer myself, I'm excited to grow this community with all of you.
TM Link Credit - TMLinkCredit.js
Plugin desc : Adds a credit command to the title screen.
License : MIT License
Author : tomoaky
Desc page : https://github.com/munokura/tomoaky-MV-plugins
Download Page : https://raw.githubusercontent.com/munokura/tomoaky-MV-plugins/refs/heads/master/TMLinkCredit.js
File name : TMLinkCredit.js
Help of plugin :
@plugindesc Adds a credit command to the title screen.
@author tomoaky
@url https://github.com/munokura/tomoaky-MV-plugins
@license MIT License
@help
English Help Translator: munokura
This is an unofficial English translation of the plugin help,
created to support global RPG Maker users.
Feedback is welcome to improve translation quality
(see: https://github.com/munokura/tomoaky-MV-plugins ).
Original plugin by tomoaky.
-----
Usage:
TMPlugin - Link Credits Ver. 3.0.0
Set the destination website information in the plugin parameter "credits."
This information consists of three elements: name, description, and address.
You can add as many as you need.
The link function will not work in environments where pop-ups are restricted in the browser.
When run on RPG Atsumare, the link destination will be opened using the Atsumare API.
It also has a function to display copyright and version information on the title screen.
The text color and display position can also be adjusted using plugin parameters.
This plugin has been tested with RPG Maker MV Version 1.6.1.
This plugin is distributed under the MIT License and is free to use, including commercial use, modifications, and redistribution.
Plugin Command:
callCredit
Calls the credits scene.
Plugin Parameter Notes:
For "credits," "name," and "help," you can use control characters to change the text color or display an icon.
help will be broken into lines where a ¥n is found.
versionText / licenseText
textColor and outlineColor can be specified using color names such as black or blue,
or color codes such as #000000 or #0000ff.
@param credits
@desc Credit Data
@default ["{¥"name¥":¥"Name¥",¥"help¥":¥"Desc¥",¥"url¥":¥"URL¥"}"]
@type struct<Credit>[]
@param versionText
@desc Version text to display on the title screen
@default {"text":"ver1.0.0","x":"0","y":"0","fontSize":"24","textColor":"#ffffff","outlineWidth":"4","outlineColor":"#000000"}
@type struct<TitleText>
@param licenseText
@desc Author information text to display on the title screen
@default {"text":"©Author","x":"0","y":"592","fontSize":"24","textColor":"#ffffff","outlineWidth":"4","outlineColor":"#000000"}
@type struct<TitleText>
@param creditsCommand
@desc Command name to display in the title menu. If not set, the credit command will not be displayed.
@default Credits
@param itemHeight
@desc Height of the area to display one element Initial value: 84
@default 84
@type number
@param helpFontSize
@desc Font size for description display Default: 16 (0 hides description)
@default 16
@type number
@param urlFontSize
@desc Address display font size Default: 16 (0 hides the address)
@default 16
@type number
@param urlMaxLength
@desc Maximum number of characters in an address
@default 50
@type number
@param useHelpWindow
@desc Whether to use the help window. Default: ON ( true = ON, displayed / false = OFF, hidden )
@default true
@param helpWindowText
@desc Text to display in the help window (¥n for line breaks). If not set, a description of the linked website will be displayed.
@default You can open the site you selected. ¥n(This will not work if your browser disables pop-ups)
@param titleCommandAlign
@desc Title Command Alignment
@default center
@type select
@option left
@option center
@option right