Wii Classic Cross Over Controller Script

ZL: LT/L2, ZR: RT/R2, L/R+ZL: LB/L1, L/R+ZR: RB/R1, L/R+B: LS/L3, and L/R+A: RS/R3.
Version1.00
AuthorMLG101
Publish DateMon, 22 Aug 2016 - 21:22
Last UpdateMon, 22 Aug 2016 - 21:22
Downloads53
RATE


0

0

Code: Select all
// Wii Classic Cross Over Controller Script by MLG101
// Mon Aug 22 2016 16:49:49
// Script generated by Visual to GPC
//----------------------------------------
 
main {
    if((get_val(6)) || (get_val(3))) { // ZL and ZR are LT/L2 and RT/R2 but while holding L or R you can press
        set_val(6, 0);                 // ZL for LB/L1, ZR for RB/R1, b for LS/L3, or a for RS/R3.
        set_val(3, 0);
        swap(3, 4);
        swap(6, 7);
        swap(18, 8);
        swap(19, 5);
    }
}