Change Follower Numbers on Map (Caterpillar Size)
Made for a request here.This script allows the changing of caterpillar size to more(or less) than 4 without effecting the battler members size.
http://s7.postimg.org/rvrmcbazf/tile_hue.png
Features:
Able to change the visible followers size to more(or less) than 4 without changing the battler members size
How to Use:
Paste the script below Material and above Main
Change the COUNT numbers in settings area in the script.
Compatibility:
This script uses overwrite method.
It might conflict with scripts that tries to modify the follower's behaviour.
When that happens, try moving this script order in the script editor to either above/below your other custom script to check how it works.
Terms of Use:
Free for both commercial and non-commercial
Script:
Spoiler#==============================================================================# ■ Meow Face Caterpillar#------------------------------------------------------------------------------# Change the numbers of visible followers without effecting battlers#==============================================================================# How to Use:# Put this script below Material and above Main# Change the COUNT numbers to how many members to show#==============================================================================module MEOW_FOLLOWERS #Do Not Remove!#==============================================================================# SETTINGS AREA#============================================================================== COUNT = 6 # the count of party members in caterpillar (minimum 2)#==============================================================================# END OF SETTINGS AREA# !!EDIT BEYOND THIS LINE AT YOUR OWN RISK!!#==============================================================================endclass Game_Follower < Game_Character def actor $game_party.members[@member_index] endendclass Game_Followers def initialize(leader) @visible = $data_system.opt_followers @gathering = false @data = [] @data.push(Game_Follower.new(1, leader)) (2...MEOW_FOLLOWERS::COUNT).each do |index| @data.push(Game_Follower.new(index, @data[-1])) end endend
Update:
19-10-2015 Typo mistake. Missed a dot in the script making the count limit not working. It's fixed now.
本贴来自国际rpgmaker官方论坛作者:MeowFace处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:https://forums.rpgmakerweb.com/threads/change-follower-numbers-on-map-caterpillar-size.46147/
页:
[1]