• The Eevee Expo Game Jam #10 has concluded, congratulations to all participants! Now it's time for the judges to play through the games, and you can play along to vote who deserves the community choice spotlight.
    You can check out the submitted games here!
    Play through the games and provide some feedback to the devs while you're at it!
  • Hi, Guest!
    Some images might be missing as we move away from using embedded images, sorry for the mess!
    From now on, you'll be required to use a third party to host images. You can learn how to add images here, and if your thread is missing images you can request them here.
    Do not use Discord to host any images you post, these links expire quickly!

Search results

  1. N

    Resource Multiple Protagonists

    If you mean that the player should have the ability to control two characters simultaneously (i.e. side-by-side screens), then this plugin will not provide that. If you mean that the player can switch between two characters at any given time, then this plugin does provide that.
  2. N

    Resource Multiple Protagonists

    That second option is probably the easiest approach. You'll need to have some code in pbSwitchCharacter to set the correct location upon switch. You might even be able to make it a smooth transition by having some code to shift the camera to the follower's location, then perform the switch...
  3. N

    Resource Multiple Protagonists

    NettoHikari updated Multiple Protagonists with a new update entry: v5.0.0 Update: Added resource sharing and other refactoring Read the rest of this update entry...
  4. N

    v21.1 Multiple Protagonists - v5.0.0 Update: Added resource sharing and other refactoring

    WARNING! v5.0.0 is not compatible with the previous versions. This means that you MUST start a new save for testing if you update this script. In other words, if you've already released a game using an earlier version of this script, then you cannot update to v5.0.0 without ruining players' old...
  5. N

    Resource Multiple Protagonists

    Well, I've actually updated it to Essentials v21.1 now. At some point in the next one or two weeks, I'm planning to refactor the script. As part of the new version, I'll add a feature to allow sharing of resources (such as bag, item storage, pokemon storage, dex, etc.) between characters, given...
  6. N

    v21.1 Multiple Protagonists - v4.2.0 Update: Updated to Essentials v21.1

    NOTE: This version (and all future versions) will ONLY be compatible with Essentials v21.1. You can download a v20 version (v4.1.1) from the main post. - Updated to Essentials v21.1
  7. N

    Resource Multiple Protagonists

    NettoHikari updated Multiple Protagonists with a new update entry: v4.2.0 Update: Updated to Essentials v21.1 Read the rest of this update entry...
  8. N

    Resource Multiple Protagonists

    1) I'm planning to update this in the next couple of weeks. 2) Can you clarify your question? You can battle any protagonist that has been switched to at least once. You can also modify the data of any character once the character has been initialized, if you want to give a custom party, items...
  9. N

    Resource Multiple Protagonists

    I think for v20.1: Save the first player's Pokedex to a Game Variable with this Script: $game_variables[XXX] = $player.pokedex Then inside this script, find the above line on 436 and place this line below it: newmeta[PBCharacterData::Player] = $player # Find this $player.pokedex =...
  10. N

    Resource Pokédex BW Style

    Hey folks, since I have no idea what happened to the plugin author, and I needed this plugin for my game, I just went ahead and upgraded it to Essentials v20.1 myself. Here is the download link for anyone who wants to use it: https://www.dropbox.com/s/6iukzuby94sedok/BW%20Pokedex%20v20.1.zip?dl=0
  11. N

    Resource Pokédex BW Style

    Hi! First of all, I noticed my name in the credits, and I appreciate that a lot :) I feel bad because I don't actually remember when I helped you out on this lol. I'm guessing it was on Thundaga's server? Either way, glad to see it became a full-fledged plugin. Also, are you planning to upgrade...
  12. N

    Resource Multiple Protagonists

    For your first question, try adding this line at the end of the battle in the event: getPlayerFromCharacter(partner_id).party = $PokemonGlobal.partner[3] where partner_id is the partner's character ID (same ID as what goes in pbSwitchCharacter). For the second question, I haven't edited the AI...
  13. N

    Resource Multiple Protagonists

    Normally the script you use to give the player a badge is $player.badges[X] = true. Instead of that, you can use: getPlayerFromCharacter(id1).badges[X] = true getPlayerFromCharacter(id2).badges[X] = true where id1 and id2 are the character IDs of the two characters that defeated the gym leader.
  14. N

    Resource Following Pokemon EX

    I found a minor bug where the following Pokemon wouldn't refresh if you deposit your first Pokemon in the daycare. I fixed this by adding FollowingPkmn.refresh in the function def self.deposit(party_index) in script section Overworld_DayCare.
  15. N

    Resource Multiple Protagonists

    I have just released a fix for the bag issue. I was not able to replicate the issue with the play time - could you tell me what steps you took starting from a new game to see that issue show up? You might also want to test this in a clean version of Essentials with only this script to see if...
  16. N

    Resource Multiple Protagonists

    NettoHikari updated Multiple Protagonists with a new update entry: v4.1.1 Patch Read the rest of this update entry...
  17. N

    v21.1 Multiple Protagonists - v4.1.1 Patch

    - Fixed characters not having separate bags
  18. N

    Resource Multiple Protagonists

    It is not easily doable in v4.0.2 (Essentials v19.1) due to limitations with how you define characters in the metadata. However, that has changed in the latest version of Essentials (v20.1), so the cap has been removed in the latest version of this script (v4.1.0). So if you want to increase the...
  19. N

    Resource Multiple Protagonists

    NettoHikari updated Multiple Protagonists with a new update entry: Upgrade to v20 Read the rest of this update entry...
  20. N

    v21.1 Multiple Protagonists - Upgrade to v20

    NOTE: This script will ONLY be compatible with Essentials v20. You can download a v19.1 version (v4.0.2 of the script) from the main post. Also, please re-read the docs, as several instructions and method names have changed.
Back
Top