Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

Change Event Graphic

RPG Maker Change Event Graphic 1.5

No permission to download
Description:
This plugin will allow you to easily change single or multiple graphic/direction of events, players, followers, & actors to be changed via script calls. Including a few extra features. (glad)

How to Use:
The following are used in a script (or script call from the event command)
changeEventGraphic(eventId, charFilename, charIndex, direction)
Example:
JavaScript:
changeEventGraphic(5, "Actor1", -1, 2);
This changes Event ID #5 to filename "Actor1", picks a random index from the character sheet & set the direction to down.
JavaScript:
changeEventGraphic(-1, "Actor1", -1);
This changes the Actor Id #1 to filename "Actor1" & picks a random index from the character sheet, direction is ommited.
Note: Use a negitive number to use Actor ID's from the database instead of events.
Note: Due to this being the actor NOT the follower direction doesn't seem affected by this & thus was ommited.
JavaScript:
changeEventGraphic(2, "Actor1", 3);
This changes Event ID #2 to filename "Actor1" & sets the character index to 3 (4th from the left, 0 is the first index)
JavaScript:
changeEventGraphic("player", "Monster", -1, -1);
This changes the players graphic to filename "Monster", picks a random index from the character sheet & pick a random direction
changePlayerGraphic(charFilename, charIndex, direction)
Example:
JavaScript:
changePlayerGraphic("Monster", -1, -1);
This changes the player graphic to filename "Monster", picks a random index & a random direction
JavaScript:
changePlayerGraphic("Monster", -1);
This changes the player graphic to filename "Monster", picks a random index & does not change direction
changePlayerDirection(direction)
Example:
JavaScript:
changePlayerDirection(4);
This changes the player direction to left.
JavaScript:
changePlayerDirection(-1);
This changes the player direction to a random direction.
changeFollowerDirection(followerIndex, direction)
Example:
JavaScript:
changeFollowerDirection(0, -1);  // This picks a random direction for the first follower (index starts at 0)
JavaScript:
changeFollowerDirection(2, 6);   // This sets the direction of follower #3 to up
batchChangeFollowerGraphic(start_index, end_index, charFilename, charIndex, direction)
Example:
JavaScript:
batchChangeFollowerGraphic(0, 3, "Monster", -1, -1);
batchChangeFollowerDirection(start_index, end_index, direction)
Example:
JavaScript:
batchChangeFollowerDirection(2, 3, -1);
batchChangeEventGraphic(eventId_start, eventId_end, charFilename, charIndex, direction)
Example:
JavaScript:
batchChangeEventGraphic(1, 5, "Evil", 2, 2);
arrayChangeEventGraphic(eventId_array, charFilename, charIndex, direction)
Example:
JavaScript:
arrayChangeEventGraphic([5, 8, 7, 4, 10], "Actor2", -1);
arrayChangeFollowerGraphic(followerIndex_array, charFilename, charIndex, direction)
Example:
JavaScript:
arrayChangeFollowerGraphic([0, 3, 1], "Actor3", 4, -1);
arrayChangeFollowerDirection(followerIndex_array, direction)
Example:
JavaScript:
arrayChangeFollowerDirection([2, 4], 2);
randomPickChangeEventGraphic(eventId_array, charFilename, charIndex, direction)
Example:
JavaScript:
randomPickChangeEventGraphic([61, 5, 9, 29, 42], "Monster", -1, -1);
randomPickChangeFollowerGraphic(followerIndex_array, charFilename, charIndex, direction)
Example:
JavaScript:
randomPickChangeFollowerGraphic([0, 1, 5, 4], "Monster", -1, -1);
This can be used in any version of RPGMaker MV.

Free to use non-commercial.
Contact me for commercial use.
Credit is mandatory.
See demo for how to use. Enjoy! (cool)
Author
CT_Bolt
Downloads
239
Views
423
First release
Last update
Rating
5.00 star(s) 2 ratings

More resources from CT_Bolt

Latest updates

  1. Linked to folder now instead. The folder contains the plugin & the demo.

    Woops just noticed the link went directly to the plugin file. Linked to folder now instead. The...
  2. Major Update! Many new features!

    I re-wrote the core of the script & also I've added a whole bunch of new features! v1.50 *Major...
  3. Added Feature: Change player graphic

    This update allows you to change the player graphic. Set eventId to -1 to change player graphic...

Latest reviews

CT, this is absolutely brilliant. it's one of those plugins where 10 ideas instantly popped into my head for how i might use it
CT_Bolt
CT_Bolt
Thanks a bunch for the nice review! ☺
If you need any features added or anything let me know. ☺
Exactly what I was looking for ad author made an update just for me.
CT_Bolt
CT_Bolt
Thanks for the review! ☺
If you think of any other features you would like added, I'll add them too. ☻
Top