Bo2 Emblem Copy Glitch

Instructions in Desc. MSG me if there is any problems
VersionFINAL
AuthorValant
Publish DateSat, 25 Jun 2016 - 00:53
Last UpdateSat, 25 Jun 2016 - 00:53
Downloads154
RATE


0

0

Code: Select all
/////////////////////////////////
// COD Bo2 Emblem Copy Glitch //
// Works With: PS3/XB360/PC  //
// By: Valant               //
/////////////////////////////
 
//Step 1. Go to the player's Player Channel and make sure they have atleast one Screenshot, if not this will NOT work.
//Step 2. Back out to the player's menu and go back into Player Channel, scroll UP to Emblems.
//Step 3. Hover over the emblem you would like to copy (orange box over it).
//Step 4. Press RB/R1 + LB/L1, you should feel a rumble if you have rumble motors still in to notify that the script has executed.
//Step 5. Click Save Emblem. If it mentions an error, just click X to try to save again, repeat if it happens again.
//Step 6. Find the emblem in your emblems in Barracks, go to edit it, and Save and apply to Playercard (or just save)
//Step 7. You're done!
 
//NOTE: If you disc/console/pc is slow, the script might not work all the time, so just try it again if it bugs out.
 
main {
        // If RB + LB has been pressed ...
        if(get_val(XB360_RB) && get_val(XB360_LB)) combo_run(CopyEmblem);
        if(get_val(XB360_RB) && get_val(XB360_LB)) combo_run(RumbleNotifier);
    }
 
// If RB + LB is pressed, CopyEmblem will run //
 
combo
CopyEmblem{
    set_val(XB360_UP, 100);
    wait(130);
    set_val(XB360_UP, 0);
    wait(150);
    set_val(XB360_X, 100);
    wait(100);
    set_val(XB360_X, 0);
    wait(80);
    set_val(XB360_X, 100);
    wait(130);
    set_val(XB360_X, 0);
    wait(10);
    set_val(XB360_DOWN, 100);
    wait(120);
    set_val(XB360_DOWN, 0);
    wait(180);
    set_val(XB360_X, 100);
    wait(110);
    set_val(XB360_X, 0);
}
combo RumbleNotifier {
    set_rumble(RUMBLE_A, 100);
    wait(200);
    reset_rumble();
}