- Joined
- Feb 22, 2015
- Messages
- 1,034
- Reaction score
- 186
- First Language
- Meowish
- Primarily Uses
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.
[IMG]http://s7.postimg.org/rvrmcbazf/tile_hue.png[/IMG]
Features:
Able to change the visible followers size to more(or less) than 4 without changing the battler members size
How to Use:
[1] Paste the script below Material and above Main
[2] 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:
Update:
19-10-2015 Typo mistake. Missed a dot in the script making the count limit not working. It's fixed now.
This script allows the changing of caterpillar size to more(or less) than 4 without effecting the battler members size.
[IMG]http://s7.postimg.org/rvrmcbazf/tile_hue.png[/IMG]
Features:
Able to change the visible followers size to more(or less) than 4 without changing the battler members size
How to Use:
[1] Paste the script below Material and above Main
[2] 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:
#==============================================================================# ■ Meow Face Caterpillar#------------------------------------------------------------------------------# Change the numbers of visible followers without effecting battlers#==============================================================================# How to Use:# [1] Put this script below Material and above Main# [2] 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.
Last edited by a moderator:



