Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 548
» Latest member: absmagnat
» Forum threads: 1,666
» Forum posts: 12,099

Full Statistics

Online Users
There are currently 103 online users.
» 0 Member(s) | 101 Guest(s)
Bing, Google

Latest Threads
Make it to 10,000
Forum: General Discussion
Last Post: Vega
29 minutes ago
» Replies: 5,829
» Views: 4,261,530
Force 30 FPS [Nick Reynol...
Forum: Misc/Other
Last Post: Katos
8 hours ago
» Replies: 4
» Views: 20,245
Vehicle Stats Modifier [J...
Forum: Offline Non-Item
Last Post: Katos
Today, 10:27 AM
» Replies: 7
» Views: 17,001
Blue shell cooldown [Gabe...
Forum: Online; Item
Last Post: Gaberboo
Today, 05:29 AM
» Replies: 0
» Views: 17
Custom Kart Working on Do...
Forum: Code Support / Help / Requests
Last Post: Fifty
05-10-2024, 08:37 PM
» Replies: 5
» Views: 281
Connect to AltWFC again
Forum: Incomplete & Outdated Codes
Last Post: marito_yo
05-03-2024, 06:27 AM
» Replies: 0
» Views: 138
Request: Mission Mode - P...
Forum: Code Support / Help / Requests
Last Post: Wingcapman
05-02-2024, 08:54 PM
» Replies: 0
» Views: 135
Boot into TT cup selectio...
Forum: Misc/Other
Last Post: Vega
04-26-2024, 08:27 PM
» Replies: 3
» Views: 3,021
Request: Custom brsars pe...
Forum: Code Support / Help / Requests
Last Post: lschlick
04-25-2024, 05:45 PM
» Replies: 0
» Views: 95
E-mails not working on th...
Forum: General Discussion
Last Post: Fifty
04-19-2024, 04:56 AM
» Replies: 3
» Views: 602

 
  Remove NIN VR+BR Matchmaking Algorithm [Fishguy]
Posted by: Vega - 02-15-2018, 04:26 AM - Forum: Online Non-Item - Replies (4)

Remove Nintendo VR+BR Matchmaking Algorithm [Fishguy]

Gets rid of VR and BR Matchmaking issues on Wifi.

NTSC-U
06895B44 00000034
74002825 73203E20
2564206F 72202573
203C3D20 25642900
65760065 76002825
73203E3D 20256420
6F722025 73203C20
25642900 00000000

PAL
0689A214 00000034
74002825 73203E20
2564206F 72202573
203C3D20 25642900
65760065 76002825
73203E3D 20256420
6F722025 73203C20
25642900 00000000

NTSC-J
06899374 00000034
74002825 73203E20
2564206F 72202573
203C3D20 25642900
65760065 76002825
73203E3D 20256420
6F722025 73203C20
25642900 00000000

NTSC-K
0688864C 00000034
74002825 73203E20
2564206F 72202573
203C3D20 25642900
65760065 76002825
73203E3D 20256420
6F722025 73203C20
25642900 00000000

Code creator: Fishguy

Print this item

  Don't Lose VR When Disconnecting [Bully]
Posted by: Vega - 02-15-2018, 04:26 AM - Forum: Online Non-Item - Replies (3)

Don't Lose VR When Disconnecting [Bully]

NTSC-U
04834AD0 60000000

PAL
04856560 60000000

NTSC-J
04855BCC 60000000

NTSC-K
04844920 60000000

Code creator: Bully
Code credits: mdmwii (subroutine founder)

Print this item

  No SSL [Fix94]
Posted by: Vega - 02-15-2018, 04:25 AM - Forum: Online Non-Item - Replies (1)

No SSL [Fix94]

This code will work on ALL Wii Games, not just MKWii.

This code changes any instance of https to http on the url writes of your game. This is a good code for users of DWC-Emulator servers. You can use this code instead of configuring the Private Server NoSSL option within USB Loader GX. 

Region-Free
C0000000 0000000E
3C004E80 60000020
900F0000 3D808000
618C3000 3C00017F
6000CFFC 7C0903A6
3D607474 616B7073
800C0000 7C005800
40A20034 394C0003
392C0002 7D455378
38600000 8C050001
2C000000 38630001
4082FFF4 8C0A0001
9C090001 3463FFFF
4082FFF4 398C0001
4200FFC0 4E800020



#START ASSEMBLY

#Statements & Variables
.set asc_ii, 0x74747073 #The 'ttps' in https://

#Overwrite Code Handler Start Line
lis r0, 0x4E80 #This will make sure the code only executes once
ori r0, r0, 0x0020
stw r0, 0x0 (r15)

#Set Start Address
lis r12, 0x8000
ori r12, r12, 0x3000

#Set Countdown Register
lis r0, 0x017F #0x817FFFFC - 0x80003000 = 0x17FCFFC
ori r0, r0, 0xCFFC
mtctr r0

#Set ASCII
lis r11, asc_ii@h
ori r11, r11, asc_ii@l

#Main/Root Loop
root_loop:
lwz r0, 0x0 (r12)
cmpw r0, r11
bne+ not_found

#HandWritten Memmove
#r9 = Destination
#r10 = Source
#r3 = Length of String to be Moved
addi r10, r12, 3 #This will start at the s in https://
addi r9, r12, 2 #This will start at the p in https://
mr r5, r10

#Pre Subroutine Loop Config
#This will tell us the result for Memmove's r5 arg
li r3, 0

the_loop:
lbzu r0, 0x1 (r5)
cmpwi r0, 0
addi r3, r3, 1 #Increment r3 by 1 everytime is non-null byte is read, once a null byte is read, r3 will hold the correct string amount for memmove's 3rd argument
bne+ the_loop

#Call HandWritten Memmove Function
another_loop:
lbzu r0, 0x1 (r10)
stbu r0, 0x1 (r9)
subic. r3, r3, 1
bne+ another_loop

#Not_Found Label, 2nd Part of Main/Root Loop
not_found:
addi r12, r12, 1
bdnz+ root_loop

#blr #Uncomment if not compiling with pyii

# ND ASSEMBLY



Code creator: Fix94
Code credits: Vega (all new source)

Print this item

  No Disconnect [Bully]
Posted by: Vega - 02-15-2018, 04:24 AM - Forum: Online Non-Item - No Replies

No Disconnect [Bully]

You will never DC from being idle.

NTSC-U
0451CF94 38000000
04539758 38000000
04539A30 38000000
04539B78 38000000
04539BE8 38000000

PAL
04521408 38000000
0453EC94 38000000
0453EF6C 38000000
0453F0B4 38000000
0453F124 38000000

NTSC-J
04520D88 38000000
0453E614 38000000
0453E8EC 38000000
0453EA34 38000000
0453EAA4 38000000

NTSC-K
0450F42C 38000000
0452CCEC 38000000
0452CFC4 38000000
0452D10C 38000000
0452D17C 38000000

Code creator: Bully

Print this item

  MarioBOT [mdmwii]
Posted by: Vega - 02-15-2018, 04:23 AM - Forum: Online Non-Item - No Replies

MarioBOT [mdmwii]

With this code, the game will drive the character for you. Only works for GCN.

NTSC-U
C2728AE8 00000004
3E408000 82521550
925D0150 925D0178
38000001 981D0163
881D0163 00000000
C251BEA0 00000008
3A400001 9A5D0012
9A5D0013 3E408000
93B21550 82521554
2C120084 40810014
2C120100 4080000C
39000001 48000008
A11D0004 39080004
B11D0004 00000000
C252E9BC 00000003
2C000125 40800008
901C1554 901F0020
60000000 00000000
0451BEF0 60000000
0451BEB8 60000000
0451A990 60000000
0451A400 60000000
0451A404 60000000

PAL
C2732CA0 00000004
3E408000 82521550
925D0150 925D0178
38000001 981D0163
881D0163 00000000
C2520314 00000008
3A400001 9A5D0012
9A5D0013 3E408000
93B21550 82521554
2C120084 40810014
2C120100 4080000C
39000001 48000008
A11D0004 39080004
B11D0004 00000000
C2533504 00000003
2C000125 40800008
901C1554 901F0020
60000000 00000000
04520364 60000000
0452032C 60000000
0451EE04 60000000
0451E874 60000000
0451E878 60000000

NTSC-J
C273230C 00000004
3E408000 82521550
925D0150 925D0178
38000001 981D0163
881D0163 00000000
C251FC94 00000008
3A400001 9A5D0012
9A5D0013 3E408000
93B21550 82521554
2C120084 40810014
2C120100 4080000C
39000001 48000008
A11D0004 39080004
B11D0004 00000000
C2532E84 00000003
2C000125 40800008
901C1554 901F0020
60000000 00000000
0451FCE4 60000000
0451FCAC 60000000
0451E784 60000000
0451E1F4 60000000
0451E1F8 60000000

NTSC-K
C2721048 00000004
3E408000 82521550
925D0150 925D0178
38000001 981D0163
881D0163 00000000
C250E338 00000008
3A400001 9A5D0012
9A5D0013 3E408000
93B21550 82521554
2C120084 40810014
2C120100 4080000C
39000001 48000008
A11D0004 39080004
B11D0004 00000000
C252155C 00000003
2C000125 40800008
901C1554 901F0020
60000000 00000000
0450E388 60000000
0450E350 60000000
0450CE28 60000000
0450C898 60000000
0450C89C 60000000

Code creator: mdmwii

Print this item

  Invisible Code [XeR]
Posted by: Vega - 02-15-2018, 04:22 AM - Forum: Online Non-Item - Replies (2)

Invisible Code [XeR]

NTSC-U
2834XXXX YYYYZZZZ 
C2586358 00000004
48000011 7F800000
7F800000 7F800000
7C6802A6 C0030000
60000000 00000000
E0000000 00000000
2834XXXX YYYYZZZZ
04586358 C0030000
E0000000 80008000

PAL
2834XXXX YYYYZZZZ 
C258CB7C 00000004
48000011 7F800000
7F800000 7F800000
7C6802A6 C0030000
60000000 00000000
E0000000 00000000
2834XXXX YYYYZZZZ
0458CB7C C0030000
E0000000 80008000

NTSC-J
2834XXXX YYYYZZZZ 
C258C4FC 00000004
48000011 7F800000
7F800000 7F800000
7C6802A6 C0030000
60000000 00000000
E0000000 00000000
2834XXXX YYYYZZZZ
0458C4FC C0030000
E0000000 80008000

NTSC-K
2833XXXX YYYYZZZZ 
C257ABD4 00000004
48000011 7F800000
7F800000 7F800000
7C6802A6 C0030000
60000000 00000000
E0000000 00000000
2833XXXX YYYYZZZZ
0457ABD4 C0030000
E0000000 80008000

Code creator: XeR

Print this item

  Invincible Code [Luis]
Posted by: Vega - 02-15-2018, 04:22 AM - Forum: Online; Item - No Replies

Invincible Code [Luis]

This code does NOT stop bloopers. Regarding TC zaps and shocks, you won't get spun out but will still shrink. POW blocks still appear on your screen but they don't make you spin out.

NTSC-U
04563394 48000008
 
PAL
04567714 48000008
 
NTSC-J
04567094 48000008
 
NTSC-K
0455576C 48000008
 
With Act and De-Act
 
NTSC-U
2834XXXX YYYYZZZZ
04563394 48000008
E0000000 00000000
2834XXXX YYYYZZZZ
04563394 40820008
E0000000 80008000
 
PAL
2834XXXX YYYYZZZZ
04567714 48000008
E0000000 00000000
2834XXXX YYYYZZZZ
04567714 40820008
E0000000 80008000
 
NTSC-J
2834XXXX YYYYZZZZ
04567094 48000008
E0000000 00000000
2834XXXX YYYYZZZZ
04567094 40820008
E0000000 80008000
 
NTSC-K
2833XXXX YYYYZZZZ
0455576C 48000008
E0000000 00000000
2833XXXX YYYYZZZZ
0455576C 40820008
E0000000 80008000

Code creator: Luis

Print this item

  Disconnect At Will [Bully]
Posted by: Vega - 02-15-2018, 04:21 AM - Forum: Incomplete & Outdated Codes - No Replies

Disconnect At Will [Bully]

NOTE: Outdated by CLF78's version as Bully's version will sometimes not execute.

Formerly known as Instant DC.

You can disconnect yourself instantly at anytime on WiFi.

NTSC-U
04651108 80160000
2834XXXX YYYYZZZZ
04651108 38001337
E0000000 80008000

PAL
04655590 80160000
2834XXXX YYYYZZZZ
04655590 38001337
E0000000 80008000

NTSC-J
04654BFC 80160000
2834XXXX YYYYZZZZ
04654BFC 38001337
E0000000 80008000

NTSC-K
046438A8 80160000
2833XXXX YYYYZZZZ
046438A8 38001337
E0000000 80008000

Code created by: Bully

Print this item

  Always Have Item [Bully]
Posted by: Vega - 02-15-2018, 04:20 AM - Forum: Offline; Item - No Replies

Always Have Item [Bully]

Also known as Infinite Item. Works everywhere. This code will make you always have the specified item that can be used at any time no matter what happens.

NTSC-U
C27E4B88 00000003
3980000X 91840090
398000YY 9184008C
8004008C 00000000

PAL
C27EEE98 00000003
3980000X 91840090
398000YY 9184008C
8004008C 00000000

NTSC-J
C27EE504 00000003
3980000X 91840090
398000YY 9184008C
8004008C 00000000

NTSC-K
C27DD258 00000003
3980000X 91840090
398000YY 9184008C
8004008C 00000000

Item Values (X/YY Values):
Green Shell = 1/00
Red Shell = 1/01
Banana = 1/02
Fake Item Box = 1/03
Mushroom = 1/04
Triple Mushroom = 3/05
Bob-omb = 1/06
Blue Shell = 1/07
Lightning = 1/08
Star = 1/09
Golden Mushroom = 1/0A
Mega Mushroom = 1/0B
Blooper = 1/0C
POW Block = 1/0D
Cloud = 1/0E
Bullet Bill = 1/0F
Triple Green Shell = 3/10
Triple Red Shell = 3/11
Triple Banana = 3/12
Nothing = 0/14

Source:
#Fyi to coders/devs r31 is 0 for P1, 1 for P2. By default this code effects all local players. I imagine r31 = 2 for P2, and 3 for P4, too lazy to check

li r12, 0xX #Set Item Amount
stw r12, 0x0090 (r4) #Store Item Amount to Memory
li r12, 0xYY #Set Item Value
stw r12, 0x008C (r4) #Store Item Value to Memory
lwz r0, 0x008C (r4) #Default Instruction, Load Item Value from Memory; this is needed

Code creator: Bully

Print this item

  Key Remapper (GCN) [mdmwii]
Posted by: Vega - 02-15-2018, 12:49 AM - Forum: Misc/Other - Replies (5)

Key Remapper (GCN) [mdmwii]

Code will allow you to select a Button to be assigned/activated when using a different Button

NTSC-U
C21AFB58 00000004
38C0XXXX 7C073039
41A20010 38E0YYYY
7C003278 7C003B78
B0040000 00000000

PAL
C21AFBF8 00000004
38C0XXXX 7C073039
41A20010 38E0YYYY
7C003278 7C003B78
B0040000 00000000

NTSC-J
C21AFB18 00000004
38C0XXXX 7C073039
41A20010 38E0YYYY
7C003278 7C003B78
B0040000 00000000

NTSC-K
C21AFF54 00000004
38C0XXXX 7C073039
41A20010 38E0YYYY
7C003278 7C003B78
B0040000 00000000

XXXX = Key to have new feature (original feature will be disabled)
YYYY = Key to assign

Example: Replace Z button with D-Pad Up button so the User can use Z button to actuate Wheelies
XXXX = 0010
YYYY = 0008

X/Y Values:
0001 = D-Pad Left
0002 = D-Pad Right
0004 = D-Pad Down
0008 = D-Pad Up
0010 = Z
0020 = R
0040 = L
0100 = A
0200 = B
0400 = X
0800 = Y
1000 = Start

Source:

Code:
#inject(0x801AFBF8)\n\n (PAL)
#inject(0x801AFB58)\n\n (NTSC-U)
#inject(0x801AFB18)\n\n (NTSC-J)
#inject(0x801AFF54)\n\n (NTSC-K)

li r6, 0xXXXX
and. r7, r0, r6
beq+ end        #Small optimisation
li r7, 0xYYYY
xor r0, r0, r6  #A glorified sub
or r0, r0, r7   #Fix for the issue
end:
sth r0, 0x0(r4)

Code created by: mdmwii
Code credits: Melg (fixed bug when both keys pressed simultaneously, optimized source)

Print this item