RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
[RPGVXA] Character in party, but will not join battle.

0 Members and 1 Guest are viewing this topic.

****
Rep:
Level 63
オ・マイ・ゴッド ・㉨・
Is there any way to put the first actor in the party, but he's the only that will not join the random battles/any battles at all?
なんでやねん

*
*crack*
Rep:
Level 64
2012 Best Newbie2012 Most Unsung MemberFor frequently finding and reporting spam and spam bots
Like pokemon? Yes but not via eventing unless you want all of your battles to be completely evented/scripted.
All of my scripts are totally free to use for commercial use. You don't need to ask me for permission. I'm too lazy to update every single script post I ever made with this addendum. So ignore whatever "rule" I posted there. :)

All scripts can be found at: https://pastebin.com/u/diamondandplatinum3

****
Rep:
Level 63
オ・マイ・ゴッド ・㉨・
Like pokemon? Yes but not via eventing unless you want all of your battles to be completely evented/scripted.
Yeah. Problem is I can't seem to find a script, nor how to event something like this.   :V
なんでやねん

**
Rep:
Level 66
RMRK Junior
Aint much you can't do with scripting :-)

This code would do what you said, for VX atleast, probably for Ace too, if they haven't changed things around too much, I doubt it though.
Code: [Select]
#==============================================================================
# ** Game_Party
#------------------------------------------------------------------------------
#  This class handles the party. It includes information on amount of gold
# and items. The instance of this class is referenced by $game_party.
#==============================================================================

class Game_Party
  #--------------------------------------------------------------------------
  # * Public Instance Variables
  #--------------------------------------------------------------------------
  attr_reader :actors # Define read attribute for Actors
end 

#==============================================================================
# ** Scene_Battle
#------------------------------------------------------------------------------
#  This class performs battle screen processing.
#==============================================================================

class Scene_Battle
  #--------------------------------------------------------------------------
  # * Start processing
  #--------------------------------------------------------------------------
  alias remove_actor_temp_start start
  def start
    $game_party.remove_actor(1)
    # Run original method
    remove_actor_temp_start
  end 
  #--------------------------------------------------------------------------
  # * End Battle
  #--------------------------------------------------------------------------
  alias mango_btle_end battle_end
  def battle_end(result)
    # Run original method
    mango_btle_end (result)
    # Insert the removed actor in the first position/index
    $game_party.actors.unshift(1)
    $game_player.refresh
  end
end