CoD : WWII - HQ ANTI-IDLE (SOCIAL REP + ARMORY PAYROLL CREDIT FARM)

Earn Social Rep & Payroll Credits at the HQ, while away. XB1 / PS4
Version1.01
Authormjfame
Publish DateTue, 5 Dec 2017 - 02:43
Last UpdateTue, 5 Dec 2017 - 02:43
Downloads1117
RATE


7

1

Release Notes: bug fix
Code: Select all
//==============================================================================
/* CALL of DUTY : WWII - HQ ANTI-IDLE (SOCIAL REP + ARMORY PAYROLL CREDIT FARM)
//------------------------------------------------------------------------------
/* v1.01
//------------------------------------------------------------------------------
 
// CONTROLLER TOGGLES
 
             XB1
 
            - Social ON/OFF       LS + RS
 
//------------------------------------------------------------------------------
 
// INSTRUCTIONS
 
            - Connect to a HEADQUARTERS server
            - Navigate to the HQ POST (MAIL icon) & open mailbox.
            - Click LS+RS to activate from within the HQ POST menu.
 
            Notes
 
            - The HQ POST window must remain open so that you will be able to
              auto-collect your 100cr payroll that is awarded every 4hrs & to
              prevent from auto-accepting 1v1 requests from other players.
 
            - Equip a FEMALE player model to increase the likelyhood of
              receiving a commendation from your fellow soldiers. Seems silly
              but it helps.
 
 
//------------------------------------------------------------------------------
*/

 
//==============================================================================
// VARIABLES
 
int RightStick_X = 0;
int RightStick_Y = 0;
 
//==============================================================================
// INITIALIZATION
 
int Social_ON                        = FALSE;
int TF_Loop                          = FALSE;
 
//==============================================================================
// MAIN
 
main {
        vm_tctrl(-2)  // Repeat main loop every 8ms.
 
    if (get_val(XB1_LS) && event_press(XB1_RS)) {TF_Loop=!TF_Loop;}
    if (TF_Loop) {combo_run(AFK);}             
    if (!TF_Loop) {combo_stop(AFK);}
 
    if(event_press(XB1_RS) && get_val(XB1_LS)) {  // Enables-Disables combo AFK
        Social_ON = !Social_ON;
        if(!Social_ON) {
           combo_run(AFK);
        }
    }
}
 
//==============================================================================
// COMBOS
 
combo AFK {                // Run combo every 3.7 seconds
    set_val (XB1_RX, 100);          // Turn right (if not in HQ POST menu)
    wait (300);
    set_val (XB1_RX, -63);          // Turn left (if not in HQ POST menu)
    wait (300);
    set_val (XB1_A, 100);           // Jump (if not in HQ POST menu)
    wait (100);                     // Auto-Reconnect to HQ if disconnected.
    set_val (XB1_A, 0);
    wait (1500);
    set_val (XB1_A, 0);
    wait (1500);
}