| 
 
| 赞 | 0 |  
| VIP | 0 |  
| 好人卡 | 0 |  
| 积分 | 0 |  
| 经验 | 0 |  
| 最后登录 | 2018-3-24 |  
| 在线时间 | 2 小时 |  
 Lv1.梦旅人 
	梦石0 星屑22 在线时间2 小时注册时间2018-3-20帖子2 | 
| 
/*:
x
加入我们,或者,欢迎回来。您需要 登录 才可以下载或查看,没有帐号?注册会员  * @plugindesc Provides an in-game clock with date and tinting function!
 * @author Vlue
 *
 * @param Real Time
 * @desc Whether to use real (system) time or not - (default: false)
 * @default false
 *
 * @param Pause Time (Message)
 * @desc Whether to pause time while the message window is up - (default: false)
 * @default false
 *
 * @param Pause Time (Menu)
 * @desc Whether to pause time while the menu is open - (default: true)
 * @default true
 *
 * @param Pause Time (Battle)
 * @desc Whether to pause time during battle - (default: true)
 * @default true
 *
 * @param Default Clock Format
 * @desc (Map Clock) Off, Simple, Expanded, Full
 * @default Simple
 *
 * @param Default Menu Clock Format
 * @desc (Menu Clock) Off, Simple, Expanded, Full
 * @default Simple
 *
 * @param Days of the Week
 * @desc The names of the days of the week
 * @default "Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"
 *
 * @param Month Names
 * @desc The names of the months
 * @default "January","February","March","April","May","June","July","August","September","October","November","December"
 *
 * @param Days in a Month
 * @desc Define the number of days in each month
 * @default 31,28,31,30,31,30,31,31,30,31,30,31
 *
 * @param Year Post
 * @desc The post name of the year period (I.E. BC, AD)
 * @default A.D.
 *
 * @param Twenty Four Hour Mode
 * @desc Whether to display time in 12 or 24 hour segments
 * @default false
 *
 * @param Clock Toggle Button
 * @desc Toggles the clock on press (All known buttons unsure)
 * @default shift
 *
 * @param Clock Window Details
 * @desc Finetune the details of the clock window
 * @default x: 576, y: 552, width: 240
 *
 * @param Menu Clock Window Details
 * @desc Finetune the details of the menu clock window
 * @default x: 0, y: 482, width: 240
 *
 * @param Blink Speed
 * @desc The speed in which those little dots blink (0 to ignore)
 * @default 120
 *
 * @param Default Timelapse
 * @desc Number of frames it takes for one second to pass, in frames
 * @default 60
 *
 * @param Use Seconds
 * @desc Whether to use seconds or not (not using causes minutes to increase every timelapse)
 * @default false
 *
 * @help Game Time MV! 1.1
 *  Follow me on twitter: https://twitter.com/DaimoniousTails
 *   Or facebook: https://www.facebook.com/DaimoniousTailsGames/
 *   for the most recent updates!
 *  Find all of my work here: http://daimonioustails.weebly.com/
 *
 *  Notes:
 * Map notes take two tags: <time:false> and <tint:false> to prevent either time or tint from passing
 * The tinting process will be automatically stopped whenever you manually tint the screen, no need to
 *  pause it yourself. You will need to restart it though using the plugin command, when done
 *
 *  Script Calls:
 * $gameTime.getTime("time") - returns current time value (second, minute, hour, day,
 *   dayweek, month, year)
 * $gameTime.inBetweenMin(m1,m2) - returns true if the current min is between m1 (including m1) and m2
 * $gameTime.inBetweenHour(h1,h2) - returns true if the current hour is between h1 (including h1) and h2
 *
 *  Plugin Commands:
 * GameTime pauseTint true/false        (pauses or unpauses the tint)
 * GameTime pauseTime true/false        (pauses or unpauses time)
 * GameTime set s m h d dw m y        (sets the current time to values (x to ignore)
 *  I.e. GameTime set 0 0 6 x x 2 2005 - Sets time to the 6th hour, 2 month, and 2005th
 *    year and ignoring day and month
 * GameTime add value amount         (increments time by the value * amount) - second,
 *   minute, hour, day, dayweek, month, year.
 * GameTime clock format                (Changes the orientation of the clock - off, simple, expanded, full)
 * GameTime year string         (Changes the year post date string)
 * GameTime countdown varID minutes    (Sets a countdown timer in variable ID for x minutes)
 *
 *  Message Codes:
 * GTSEC    - replaces with current second
 * GTMIN        - replaces with current minute
 * GTHOUR12        - replaces with current hour
 * GTHOUR24 - replaces with current hour24
 * GTDAYN        - replaces with current day (of month)
 * GTDAYF        - replaces with current day (of week)
 * GTMONN        - replaces with current day (number)
 * GTMONF        - replaces with current day (name)
 * GTYEAR        - repalces with current year
 * GTMERI   - replaced by either AM or PM depending
 *
 *  Tint Values
 * You may edit the tint values, but you will have to open up the plugin in a text editor
 * and edit the values in there. (They will be the first thing you see at after the comments).
 */
 文本,机翻不靠谱,折磨我一天了
 | 
 |