FIREHAWK11'S PROFILE

Search

Filter

More help

Okay now i got the problem to picture, take a look, please.

part 1


part2 (line 88)


part 3


part 4 (error)


More help

so i need every scirpt to have this work right? If yes then how do i stop the others from working?

More help

I'm getting a problem with the melody actor influenced music. next unless YEM::BATTLE_THEMES::ACTOR_MUSIC.include?(member.actor_id). this part of the script is causing a actor id isn't found or something like it error to happen. I'm trying this with the rpg takenai scripted. so if anyone knows, it would help me alot. the error happens on the 88 line. of the script in my last help.

Script help

Script help

thank you is there anyway to force a battle music to play on who's the leader of the party is? Now I got a bigger problem. next unless YEM::BATTLE_THEMES::ACTOR_MUSIC.include?(member.actor_id)
this part of the scirpt keeps giving me a error why and how do i fix it? I'm using this or atleast hope to use this with the rpg tankeia scirpt or whatever that scirpt is called.

Script help

I just don't understand this scirpt well. Can someone tell me how to use this scirpt? Please!

#===============================================================================
#
# Yanfly Engine Melody - Party Influenced Music
# Last Date Updated: 2010.06.24
# Level: Normal
#
# No matter how good an RPG's battle music is, players are going to get sick and
# tired of listening to it for the zillionth time. This script won't rid RPG's
# of that problem, but will hopefully stall the process by playing randomized
# music dependent on who the player has in the active party at the start of any
# normal battle.
#
#===============================================================================
# Updates
# -----------------------------------------------------------------------------
# o 2010.06.24 - Started Script and Finished.
#===============================================================================
# Instructions
# -----------------------------------------------------------------------------
# To install this script, open up your script editor and copy/paste this script
# to an open slot below ▼ Materials but above ▼ Main. Remember to save.
#
# To use this script, modify the module down below to create the arrays of
# music themes used by each actor. Depending on who is present in the battle,
# a random piece of music will play gathered from the music pool.
#
# To force a theme to play, just set the battle theme to something else other
# than the default battle theme. It will always choose the selected theme over
# the random themes. Once the battle theme is changed back to the default battle
# theme, then random battle themes will trigger once again.
#
#===============================================================================

$imported = {} if $imported == nil
$imported = true

module YEM
module BATTLE_THEMES

# This hash adjusts the random battle themes that may be played depending
# on whether or not the party member is present in the battle when the music
# loads up. Each array contains possible themes that may play for battle.
# Actor 0 is the common pool. Inside of that array contains all of the
# battle themes that can bebe played regardless of who's in the party.
ACTOR_MUSIC ={ # ActorID 0 must exist.
# ActorID =>
0 => , # End Common
1 => , # End Actor1
2 => , # End Actor2
3 => , # End Actor3
4 => , # End Actor3
} # Do not remove this.

end # BATTLE_THEMES
end # YEM

#===============================================================================
# Editting anything past this point may potentially result in causing computer
# damage, incontinence, explosion of user's head, coma, death, and/or halitosis.
# Therefore, edit at your own risk.
#===============================================================================

#===============================================================================
# Game_System
#===============================================================================

class Game_System

#--------------------------------------------------------------------------
# overwrite method: battle_bgm
#--------------------------------------------------------------------------
def battle_bgm
return @battle_bgm if @battle_bgm != nil
former_in_battle = $game_temp.in_battle
$game_temp.in_battle = true
music_list = YEM::BATTLE_THEMES::ACTOR_MUSIC
for member in $game_party.existing_members
next unless YEM::BATTLE_THEMES::ACTOR_MUSIC.include?(member.actor_id)
result = YEM::BATTLE_THEMES::ACTOR_MUSIC
if result.is_a?(Array)
music_list |= result
elsif result.is_a?(RPG::BGM)
music_list.push(result)
end
end
$game_temp.in_battle = former_in_battle
return music_list
end

#--------------------------------------------------------------------------
# overwrite method: battle_bgm=
#--------------------------------------------------------------------------
def battle_bgm=(battle_bgm)
@battle_bgm = battle_bgm
@battle_bgm = nil if @battle_bgm == $data_system.battle_bgm
end

end # Game_System

#===============================================================================
#
# END OF FILE
#
#==============================

Bio

whats with the huge cap lock scream?

Limit breaker

Anyone here know a good scirpt that allows for basic limit breaker after so many hits/attacks? Including magic and other skills?

Orc spirtes

Does anyone here know where i can find some orc spirtes?

Spirtes re-colour

thanks and you wouldn't know where to find orc sprites? Like normal orc, warrior orc, orc king, ect.