Post your Destiny M&K settings.

Gtuner Plugins support. MaxAim, MaxRemapper, Combo Magick, Game Rec.

Re: Post your Destiny M&K settings.

Postby M1D4 » Sun Jan 24, 2016 9:49 am

Anyone knows what is exact number to put in acceleration bar to cancel destiny in-game acceleration(it feels really awkward at times sometimes slow sometimes fast, but majority of the time it's fine, it's just a little inconvenience for me..)? all of my settings are in the pic / code :)

mouse is steelseries rival, if that matters..

Code: Select all


define ZOOM = XB1_LT;
define SENS_ZOOM_INCREASE = 15;
define X_AXIS = XB1_RX;
define Y_AXIS = XB1_RY;

int rapidfire_toogle = FALSE;
int rapidfire2_toogle = FALSE;

init {
    // Disable Rumble
    block_rumble();
}


main
{
    // Adjust X/Y movements
    if(abs(get_val(XB1_RX)) > 30 && abs(get_val(XB1_RY)) < 28)
    {
        set_val(XB1_RY, 0);
    }
        else if(abs(get_val(XB1_RY)) > 30 && abs(get_val(XB1_RX)) < 28)
        {
            set_val(XB1_RX, 0);
        }
    // viewtopic.php?f=7&t=308&hilit=destiny
   
    if(get_val(ZOOM))
    {
        sensitivity ( X_AXIS, NOT_USE, 100 + SENS_ZOOM_INCREASE );
        sensitivity ( Y_AXIS, NOT_USE, 100 + SENS_ZOOM_INCREASE );
    }
    // viewtopic.php?f=9&t=312&hilit=mouse+settings
   

    // Sets super to additional input 1.
    if(get_val(CEMU_EXTRA1))
    {
        set_val(XB1_RB, 100);
        set_val(XB1_LB, 100);
    }
   
    // Rapidfire Toogle
    if(get_val(XB1_RS) && event_press(XB1_B)) {
        rapidfire_toogle = !rapidfire_toogle;
        if(rapidfire_toogle) set_ledx(LED_3, 0);
        else reset_leds();
    }
   
    // Rapidfire2 Toogle
    if(get_val(XB1_RS) && event_press(XB1_X)) {
        rapidfire2_toogle = !rapidfire2_toogle;
        if(rapidfire2_toogle) set_ledx(LED_4, 0);
        else reset_leds();
    }

    // R2 Rapidfire
    if(rapidfire_toogle && get_val(XB1_RT)) {
        combo_run(RapidFire);
    }
   
    // R2 Rapidfire2
    if(rapidfire2_toogle && get_val(XB1_RT)) {
        combo_run(RapidFire2);
    }
   
    if(get_val(CEMU_EXTRA8)) {
    combo_run(Shadestep);
    }
    if(get_val(CEMU_EXTRA7)) {
    combo_run(SMOKEGND);
    }

}


combo RapidFire {
    set_val(XB1_RT, 100);
    wait(25);
    set_val(XB1_RT, 0);
    wait(24);
    set_val(XB1_RT, 0);

}
combo RapidFire2
{
    set_val(XB1_RT, 100);
    wait(150);
    set_val(XB1_RT, 0);
    wait(140);
}
combo Shadestep {
    set_val(XB1_B, 100);
    wait(70);
    set_val(XB1_B, 0);
    wait(70);
    set_val(XB1_B, 100);
    wait(60);
    set_val(XB1_B, 0);
}
combo SMOKEGND {
    set_val(XB1_RB, 100);
    wait(70);
    set_val(XB1_RB, 0);
    wait(300);
    set_val(XB1_LB, 100);
    wait(70);
    set_val(XB1_LB, 0);
}
Attachments
destiny settings near perf.jpg
Mouse esettings
destiny settings near perf.jpg (210.96 KiB) Viewed 2951 times
User avatar
M1D4
Staff Sergeant
Staff Sergeant
 
Posts: 13
Joined: Sun Sep 27, 2015 5:15 pm

Re: Post your Destiny M&K settings.

Postby ZurK » Fri Jan 29, 2016 12:56 pm

Hi all :)

I'm new in the forum, got my Titan One 2 days ago to play Destiny for now.
Trying the configurations that @J2Kbr posted on 27 Sept 2014 (long time ago) and they are more or less pretty good.. but still i kinda find some "breaks" during the game and it's really hard to aim for headshots with the sniper. Globably the configurations are really good and i know that it will never be totally perfect..

But are those the best, or someone found some better ones?

Thanks in advance :)
User avatar
ZurK
Private First Class
Private First Class
 
Posts: 2
Joined: Fri Jan 29, 2016 12:48 pm

Re: Post your Destiny M&K settings.

Postby Demonburner » Sun Jan 31, 2016 3:14 pm

Hello guys

i need some help for a Script i tried but i dont get it to work.

I want these settings in one script. Thanks for Helping and btw sorry for my English :D



Code: Select all
define ADS_BUTTON       = PS4_L2;
define ADS_SENSITIVITY  = 130;

main {
    if(get_val(ADS_BUTTON)) {
        sensitivity(PS4_RX, NOT_USE, ADS_SENSITIVITY);
        sensitivity(PS4_RY, NOT_USE, ADS_SENSITIVITY);
    }
   

}
    // Activate Super Ability
    if(get_val(CEMU_EXTRA9)) {
        set_val(PS4_R1, 100);
        set_val(PS4_L1, 100);



    // R2 Rapidfire
    if(get_val(PS4_R2)) {
        combo_run(RapidFire);
    }
}

combo RapidFire {
    set_val(PS4_R2, 100);
    wait(25);
    set_val(PS4_R2, 0);
    wait(24);
    set_val(PS4_R2, 0);
}
User avatar
Demonburner
Private First Class
Private First Class
 
Posts: 2
Joined: Sun Jan 31, 2016 3:11 pm

Re: Post your Destiny M&K settings.

Postby AKHUGHES90 » Sun Jan 31, 2016 6:15 pm

Demonburner wrote:Hello guys

i need some help for a Script i tried but i dont get it to work.

I want these settings in one script. Thanks for Helping and btw sorry for my English :D



Code: Select all
define ADS_BUTTON       = PS4_L2;
define ADS_SENSITIVITY  = 130;

main {
    if(get_val(ADS_BUTTON)) {
        sensitivity(PS4_RX, NOT_USE, ADS_SENSITIVITY);
        sensitivity(PS4_RY, NOT_USE, ADS_SENSITIVITY);
    }
   

}
    // Activate Super Ability
    if(get_val(CEMU_EXTRA9)) {
        set_val(PS4_R1, 100);
        set_val(PS4_L1, 100);



    // R2 Rapidfire
    if(get_val(PS4_R2)) {
        combo_run(RapidFire);
    }
}

combo RapidFire {
    set_val(PS4_R2, 100);
    wait(25);
    set_val(PS4_R2, 0);
    wait(24);
    set_val(PS4_R2, 0);
}

I just fixed the errors, you had your end brackets misplaced.

Code: Select all
define ADS_BUTTON       = PS4_L2;
define ADS_SENSITIVITY  = 130;

main {
    if(get_val(ADS_BUTTON)) {
        sensitivity(PS4_RX, NOT_USE, ADS_SENSITIVITY);
        sensitivity(PS4_RY, NOT_USE, ADS_SENSITIVITY);
    }
   


// Activate Super Ability
    if(get_val(CEMU_EXTRA9)) {
        set_val(PS4_R1, 100);
        set_val(PS4_L1, 100);
}


    // R2 Rapidfire
    if(get_val(PS4_R2)) {
        combo_run(RapidFire);
    }
}

combo RapidFire {
    set_val(PS4_R2, 100);
    wait(25);
    set_val(PS4_R2, 0);
    wait(24);
    set_val(PS4_R2, 0);
}
Image
"We always start with completing the difficult. It just takes us a little longer to do the impossible."
Console Tuner Support Team®
User avatar
AKHUGHES90
Major
Major
 
Posts: 927
Joined: Mon Nov 24, 2014 12:19 am
Location: Springfield, IL USA CST (-6:00)

Re: Post your Destiny M&K settings.

Postby Demonburner » Sun Jan 31, 2016 6:55 pm

Thanks a lot :D
User avatar
Demonburner
Private First Class
Private First Class
 
Posts: 2
Joined: Sun Jan 31, 2016 3:11 pm

Re: Post your Destiny M&K settings.

Postby Ssh-sleep » Thu Jul 21, 2016 9:58 pm

Hi all,

I'm new to PS4, and to the Titan One, I'm a PC gamer who's bought these to play with friends and family.

I'm really happy with the settings and script that J2Kbr put up on the first page, but as noob I'm failing every time I try to add an auto-sprint to the script.

Can I be cheeky and ask for some help with this please?

J2Kbr wrote:Finally I got my Destiny copy, this morning I played for couple hours, here what I got so far.

The game aim speed, even at 10, is kinda slow for mouse. The max possible turning angle, in a single mouse swipe, is something around 180 and 220 degrees. No good, but not bad too.

The deadzone is SQUARE, with X and Y at 24.

Here my preliminary mouse settings. (if you try it, don't forget to adjust the mouse DPI). It still have space for some tweaks, but is good enough to allow aim for headshots.

destinumaxaim.png


For the best result, also load this script, it makes conditional adjustments on the RX/RY to improve accuracy.

Code: Select all
/******************************************************************************
 *
 *                            DESTINY - MAXAIM SCRIPT
 *
 ******************************************************************************/


init {
    // Disable Rumble
    block_rumble();
}

main {
    // Adjust X/Y movements
    if(abs(get_val(PS4_RX)) > 30 && abs(get_val(PS4_RY)) < 28) {
        set_val(PS4_RY, 0);
    } else if(abs(get_val(PS4_RY)) > 30 && abs(get_val(PS4_RX)) < 28) {
        set_val(PS4_RX, 0);
    }

    // Lower Sensitivity when Aiming
    if(get_val(PS4_L2)) {
        deadzone(PS4_RX, PS4_RY, -3, -3);
    }

    // Activate Super Ability
    if(get_val(CEMU_EXTRA9)) {
        set_val(PS4_R1, 100);
        set_val(PS4_L1, 100);
    }

    // R2 Rapidfire
    if(get_val(PS4_R2)) {
        combo_run(RapidFire);
    }
}

combo RapidFire {
    set_val(PS4_R2, 100);
    wait(25);
    set_val(PS4_R2, 0);
    wait(24);
    set_val(PS4_R2, 0);
}
User avatar
Ssh-sleep
Private
Private
 
Posts: 1
Joined: Wed Jul 20, 2016 7:41 pm

Re: Post your Destiny M&K settings.

Postby J2Kbr » Mon Jul 25, 2016 11:10 am

Thank you for the feedback on the Titan One. Appreciated.

For keyboard and mouse, there is a catch with the auto-sprint mod. using the gamepad we can activate it only when the analog stick is fully forward. But for keyboard we don't have this control, what can be done is always activate when pressing forward 'W'. Please let me know if that would be good for your need. thanks.
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm

Previous

Return to Gtuner Plugins Support

Who is online

Users browsing this forum: No registered users and 53 guests

cron