BO2 Emblem Copy Glitch [No Screenshot Needed]

Instructions in script.
VersionFINAL
AuthorValant
Publish DateThu, 28 Jul 2016 - 20:02
Last UpdateThu, 28 Jul 2016 - 20:02
Downloads372
RATE


2

0

Release Notes: This one you don't need a screenshot to do. You will need to be friends or sent a friend request to the player before you can do this.
Code: Select all
//////////////////////////////////
// COD Bo2 Emblem Copy Glitch  //
// -[NO SCREENSHOT NEEDED]-   //
// Works With: PS3/XB360/PC  //
// By: Valant               //
/////////////////////////////
 
//NOTE: YOU MUST BE FRIENDS OR SENT A FRIEND REQUEST TO THE PLAYER YOU WISH TO EMBLEM COPY FROM
 
//Step 1. Go to CoD TV and down to Friend's Feed -> Recently Shared -> UP 2 times to Emblems
//Step 2. Find the emblem you wish to copy
//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(XB1_B, 100);
    set_val(XB1_X, 100);
    wait(110);
    set_val(XB1_B, 100);
    set_val(XB1_X, 0);
    wait(100)
    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();
}