Status
Not open for further replies.

TheDrifter

Veteran
Veteran
Joined
Apr 18, 2012
Messages
124
Reaction score
7
First Language
English
Primarily Uses
Greetings,

I have this Sprain state that makes it unable for the player to dash or run if one of the party members has it.

However, I want to disable dashing only when it's the party leader who has it.

I still want to be able to dash if I switch him out with another party member who isn't affected by a sprain.

Here's the short script I've been using up until now:



Code:
#==============================================================================
# Disable Dash States
# Version: 1.0
# Author: modern algebra (rmrk.net)
# Date: September 6, 2009
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Instructions:
#
# Place above Main and below other custom scripts in the Script Editor (F11)
#
# To set a state to disable dashing, put this code in the notebox of the
# state:
#
# \Disable_Dash
#
# Dashing will be disabled if ANY party member possesses this state.
#==============================================================================

#==============================================================================
# ** RPG::State
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Summary of Changes:
# new method - disable_dash?
#==============================================================================

class RPG::State
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# * Check if dash disabled
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
def disable_dash?
return self.note[/\\DISABLE_DASH/i] != nil
end
end

#==============================================================================
# ** Game Map
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Summary of Changes:
# aliased method - disable_dash?
#==============================================================================

class Game_Map
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# * Check if dash enabled
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
alias ma_dash_states_disble_8kb3 disable_dash?
def disable_dash?
# Check if a state is possessed that disables dashing
for actor in $game_party.members
actor.states.each { |state| return true if state.disable_dash? }
end
# Run Original Method
return ma_dash_states_disble_8kb3
end
end
Thank you for your help!
 
Last edited by a moderator:

Mr. Bubble

Makes stuff.
Member
Joined
Mar 1, 2012
Messages
853
Reaction score
164
Change the disable_dash method to:



Code:
class Game_Map
  #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  # * Check if dash enabled
  #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  alias ma_dash_states_disble_8kb3 disable_dash?
  def disable_dash?
	# Check if a state is possessed that disables dashing
	$game_party.leader.states.each { |state| return true if state.disable_dash? }
	# Run Original Method
	return ma_dash_states_disble_8kb3
  end
end
This is untested, but I believe it should work
 
Last edited by a moderator:

TheDrifter

Veteran
Veteran
Joined
Apr 18, 2012
Messages
124
Reaction score
7
First Language
English
Primarily Uses
It works awesomely well! Thank you very much!
 

Mr. Bubble

Makes stuff.
Member
Joined
Mar 1, 2012
Messages
853
Reaction score
164
This thread is being closed, due to being solved. If for some reason you would like this thread re-opened, please report this post and leave a message why. Thank you.
 
Status
Not open for further replies.

Latest Threads

Latest Profile Posts

I genuinely like the default MZ actor sprites, and the character creator. I think I will draw new headshots for them, but part of me doesn't want to replace the default sprites. But should I? I want to eventually release my game.
Someday, I hope they make a game where 95% of the animation budget went to turning valves and opening door animations, leaving every other animation looking like a CDI zelda cutscene.
programming at 12 years old: "I love how it works!"
programming at 18: "I love that it works."
programming at 25: "I love why it works."
programming at 30: "I love when it works."
programming at 50: "How did this work?"
Why can't I insert picture in this profile post? Only insert image -> by URL. No option to upload from my pc?

Forum statistics

Threads
129,764
Messages
1,204,923
Members
170,854
Latest member
cyank9
Top