[Request] Fortnite

GPC1 script programming for Titan One. Code examples, questions, requests.

[Request] Fortnite

Postby xLuckyX94 » Sat Jan 06, 2018 9:53 pm

I search a GPC Script with

Anti Recoil
Auto Run
Rapid Fire


And i search aim Assist but the other player see that i go inscope and outscope very fast?
User avatar
xLuckyX94
Sergeant First Class
Sergeant First Class
 
Posts: 22
Joined: Fri Dec 22, 2017 11:18 am

Re: [Request] Fortnite

Postby ShortEssay » Mon Jan 08, 2018 1:30 am

xLuckyX94 wrote:I search a GPC Script with

Anti Recoil
Auto Run
Rapid Fire


And i search aim Assist but the other player see that i go inscope and outscope very fast?


The Scoping In & Out is how the script abuses the aim assist...
User avatar
ShortEssay
Sergeant First Class
Sergeant First Class
 
Posts: 20
Joined: Tue Apr 04, 2017 12:53 am

Re: [Request] Fortnite

Postby J2Kbr » Thu Jan 11, 2018 5:07 pm

xLuckyX94 wrote:I search a GPC Script with
Anti Recoil
Auto Run
Rapid Fire

Please note the defines at the beginning of the code, you can customize the script by changing the values. :smile0517:

Code: Select all
define ANTIRECOIL_FORCE     = 30.0;
define ANTIRECOIL_ADSONLY   = FALSE;
 
define RAPIDFIRE_SPEED      = 40;
 
define FIRE_BUTTON          = PS4_R2;
define ADS_BUTTON           = PS4_L2;
define SPRINT_BUTTON        = PS4_L3;
 
int tmp;
 
main {
    if(get_val(FIRE_BUTTON)) {
        combo_run(Rapidfire);
    }
 
    if(get_val(PS4_LY) < -75) {
        combo_run(EasySprint);
    }
 
    if(get_val(FIRE_BUTTON) && (!ANTIRECOIL_ADSONLY || get_val(ADS_BUTTON))) {
        tmp = get_val(PS4_RY) + ANTIRECOIL_FORCE;
        if(tmp > 100) tmp = 100; else if(tmp < -100) tmp = -100;
        set_val(PS4_RY, tmp);
    }
}
 
combo Rapidfire {
    set_val(FIRE_BUTTON, 100);
    wait(RAPIDFIRE_SPEED);
    set_val(FIRE_BUTTON, 0);
    wait(RAPIDFIRE_SPEED);
    set_val(FIRE_BUTTON, 0);
}
 
combo EasySprint {
    set_val(SPRINT_BUTTON, 100);
    wait(50);
    wait(100);
}
 
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm


Return to GPC1 Script Programming

Who is online

Users browsing this forum: No registered users and 63 guests