A downloadable RMMZ Plugin

Download NowName your own price

Introduction

This plugin allows you to copy features from an actor to another one.

Features

Copy from one actor to another:

- Looks
- Skills
- Class
- Traits
- States
- Equipment
- Buffs
- ...
- And all together!

Create actors based of another!

Download

Download NowName your own price

Click download now to get access to the following files:

Demo
External
Plugin
External

Comments

Log in with itch.io to leave a comment.

Can this be used with an actor ID stored in a variable? I’ve looked at the code, but I’m too inexperienced to tell. 

(2 edits)

I generally make my plugins so that behaviour is possible, but it seems as it's one of my earliest plugins, I didn't take that approach.

That doesn't meant it cannot be done, but instead of using the plugin commands, you have to go to the function.

I'll update this now I know, but for the time being, you have to use the script calls instead.


Let's say you want to copy the entire actor you set on variable 3 into the actor you set in variable 7:

$gameActors($gameVariables.value(7)).copyActor($gameVariables.value(3));


You can replace $gameVariables.value(x) for literal numbers if you want to use the literal id instead of the variable.


[Edit]

Alright, updated it, now you can use any string with a number as "use a variable instead", like for example,  variable10, or 10v will both go and check whatever editor variable contains and use it!