...i think i'll make a new one.
Moogle_X's Actors Friendship System
● ARCHIVED · READ-ONLY
-
-
Indeed, I have been busy.
It's fine to open a new thread for issues, but note that that means it's less likely for me to see it, so if you specifically want a response from me it's best to post here. -
Hello, I don’t know if you can still see it, but I want to report a bug. When the character uses characters with "$", the leadership interface will display a blank image。Indeed, I have been busy.
It's fine to open a new thread for issues, but note that that means it's less likely for me to see it, so if you specifically want a response from me it's best to post here.
In addition, I want to know if there is a way to add multiple friends to the leader at once? I have more than 100 characters, all using plug-in commands will be very tedious, thank you for your hard work! -
So basically you want the equivalent of
AFS Show Friend x Leader ybut adding multiple friends simultaneously? There's no clean way to do this currently, but you might find a script call a little more to your liking:
JavaScript:var leaderId = 9, friendsToAdd = [12, 30, 100]; friendsToAdd.forEach(function(who) { $gameActors.actor(leaderId).afsShowFriendship(who); });
Just edit the first line to set the leader ID and the list of friends you want to add. Or if you want to add the 12 actors starting from actor 42, you could replace[12, 30, 100]withArray.from({length: 12}, (value, key) => key + 42). -
Wow~ Thank you for your reply. I tried it and it succeeded. I don't know if there are similar scripts for other functions. Otherwise, adding each character one by one would be too painful for me.
For example, the friendship icon in the picture. I like this feature very much, but I almost filled the comment box with only one character. It looks very confusing. If you want a character to have friendship level icons for multiple leaders, it’s just It's scary to think about it...
Is there any way to make them write in other places or call scripts to complete
-
If it's plugin commands I can give a script to collapse a lot of calls into a single script command, but that won't work for note tags. There isn't really a way of making that shorter, but if the problem is that you need to copy almost the exact same code to all characters, then configuring defaults in the plugin parameters should be doable. (I don't remember if that's possible right now or if I'd have to add the feature.)
-
Hahaha, I think it is necessary to set the default friendship icon level, because it looks really cool, of course, if you have time, you might as well consider it.If it's plugin commands I can give a script to collapse a lot of calls into a single script command, but that won't work for note tags. There isn't really a way of making that shorter, but if the problem is that you need to copy almost the exact same code to all characters, then configuring defaults in the plugin parameters should be doable. (I don't remember if that's possible right now or if I'd have to add the feature.)
Thanks for your reply, this plugin is awesome! -
Well ,since my thread is kinda dead, i'll leave a link here in case someone wanted to come help meheya! having a small problem with the plugin
should i post it here or make a new thread?
MV - Problem with Moogle X Friendship System -
Hi! I'm running into a bug that was reported back in the old thread from 2017 where when I first open the Friendship tab, it doesn't show a face. It shows their name and the rest of the information fine. If I close out of the menu and reopen it, it shows the face. Is there a fix that anyone knows of?
-
Are you using the version of the plugin downloaded from this thread or the older version from the old thread?
-
This version, but it seems it's not a problem after deployment, just in testing! Thank you.
-
Hi Bohutang
How did you get the layout of the icons(hearts) like that. When my fp level up it just replaces the same icon with another icon and does not keep for instance the level one icon and add a level 2 icon beside it like yours but is replaces it. So if the level is lv.2 or lv.10 it still only has the one icon.
Wow~ Thank you for your reply. I tried it and it succeeded. I don't know if there are similar scripts for other functions. Otherwise, adding each character one by one would be too painful for me.
For example, the friendship icon in the picture. I like this feature very much, but I almost filled the comment box with only one character. It looks very confusing. If you want a character to have friendship level icons for multiple leaders, it’s just It's scary to think about it...
Is there any way to make them write in other places or call scripts to complete
View attachment 179696
View attachment 179697 -
Can somebody give me a step by step tutorial on how to make a friend show up in your menu?
-
I'd also appreciate a step by step on how to make a friend show up in the menu. I'm pretty new to RMMV and Javascript in general, but I feel like I've been reading the Help for this plug-in over and over and still can't figure out how to make someone show up in the menu.
Edit: I've figured it out, but how would you add the friendship values to a variable?
For anyone unsure on how to add a friend to the list, what you have to do is create an event (say for example, this might be the event where you first meet the character or they join your party). You're going to want to make a Plugin Command and put "AFS Show Friend x Leader y" (substituting x/y for your friend/leader numbers). My Default All Leaders is false and Default All Friends is true.
Right now, I'm trying to figure out how to add the Friendship Points to a variable. I've been scouring the Help section AND this thread, but no concrete answers and doesn't seem like the creators are available for questions. I'm a novice, but I'll share my findings as I figure stuff out. Hopefully this helps someone else. -
I gave an item to a follower to increase his friendship with my leader character, and then...
-
Have you set the "Leader ID for Map Items" plugin parameter to a valid actor ID?
-
Hey I'm getting the 'faceName' of null error. Would you like a copy of my project so that you can check it?
-
@NateThe8 check the helpfile how to use the plugin.
most are notetag to set thing up for the actor, and "of undefined", "of null"
means that the data does not exist, so make sure it does exist and start
a new game. -
The "faceName null" error is something that has been reported a few times, and I apparently made a note that I couldn't reproduce it. If I had a copy of your project, it would probably be possible to reproduce it and find a solution.Hey I'm getting the 'faceName' of null error. Would you like a copy of my project so that you can check it?
-
do u want me to message it to you or just post it here?The "faceName null" error is something that has been reported a few times, and I apparently made a note that I couldn't reproduce it. If I had a copy of your project, it would probably be possible to reproduce it and find a solution.