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.
Need help with a script incompatibility... (XP)

0 Members and 1 Guest are viewing this topic.

*
Rep: +0/-0Level 70
RMRK Junior
im interested in using this battle results script
http://rmrk.net/index.php/topic,24168.0.html

however
im also using minkoff's battle system script, and they seem to both be altering the same part of the code in
Scene_Battle

whcih stops their victory pose from playing anymore when I use it... is there anything I can do to fix this?

This is the victory animation code of minkoff... what do you think could be interfering and is there anyway to fix it?:
Code: [Select]
#--------------------------------------------------------------------------
# * Victory Animation
#--------------------------------------------------------------------------
alias mnk_start_phase5 start_phase5
def start_phase5
for actor in $game_party.actors
return if @spriteset.battler(actor).moving
end
# See if an actor remains alive
for actor in $game_party.actors
unless actor.dead?
$game_system.victory = true
end
end
# See if an enemy remains alive
for enemy in $game_troop.enemies.reverse
unless enemy.dead?
$game_system.defeat = true
end
end
# Perform the original call
mnk_start_phase5
end