• Welcome to Smashboards, the world's largest Super Smash Brothers community! Over 250,000 Smash Bros. fans from around the world have come to discuss these great games in over 19 million posts!

    You are currently viewing our boards as a visitor. Click here to sign up right now and start on your path in the Smash community!

Completed Crazy Hand Cancels Tag Team Attack if Master Hand isn't in the Match

abysspartyy

Smash Cadet
Joined
May 11, 2015
Messages
55
If Crazy Hand is in a match without Master Hand, he will remain stuck in his idle pose when requesting for a tag team attack since Master Hand doesn't exist in the match. I made it check if Master Hand exists in the match and if not, make it so Crazy Hand cancels any tag team requests.

This code, alongside with Crazy Hand Uses his Own Lasers (Fixes Crash), allows Crazy Hand to be playable without any crashes or issues in any match without Master Hand!

Code:
$Crazy Hand Tag Team Fix [sushie]
C215C2F8 00000003 #..\source\fig\ch\FixCrazyHandTagTeam.asm
28030000 40820008
38000000 28000001
60000000 00000000

Code:
# Insert Address: 8015c2f8

# Check if Master Hand's fighter state is 0
# In this case, 0 means that Master Hand doesn't exist in the match
cmplwi r3, 0
bne Exit
# Indicate that Crazy Hand should cancel the tag team attack
li r0, 0

Exit:
cmplwi r0, 1 # original code line
 
Last edited:
Top Bottom