( Help! ) Maxaim Di For PS4 ( Destiny )

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

( Help! ) Maxaim Di For PS4 ( Destiny )

Postby Amok19900 » Wed Aug 17, 2016 5:26 am

Hello guys,

Ive had a read through the forums so far and yet to find something that suits my style i understand i need to change little bits at a time via Maxaim to find the right config, looking for a bit of help on it though

I currently have a

Razer Naga Hex mouse
5600dpi Razer Precision 3.5G Laser Sensor
1000Hz Ultrapolling/1ms response time
27" LG gaming monitor
and a Razer keyboard

On destiny i play with 2 sensitivity ingame, i snipe

I'm looking for a config that will suit my mouse and any scripts i need to make the flow ingame better, ive tried a few around the forums and ingame with sensitivity on 10 i scope in but the feel is not there, doesn't move properly with the mouse and i adjust my maxaim and it goes spaz.


is their someone out their that played close to a 2 sensitivity ingame that has a config that work great and can list any scripts i need to add to make it feel smoother ingame scoping and looking around.


Kind Regards
User avatar
Amok19900
Private
Private
 
Posts: 1
Joined: Tue Aug 16, 2016 1:08 am

Re: ( Help! ) Maxaim Di For PS4 ( Destiny )

Postby J2Kbr » Wed Aug 17, 2016 11:45 am

Hi Amok19900. Welcome to our forums.

First I want state that Destiny does not offer enough aiming speed to allow a PC like mouse gameplay. Even at 10 it is slow, however still playable.

There are quite some time I don't play destiny myself, so I am not aware of what you mean with "2 sensitivity ingame". If it is actually 2 sensitivity that can be configure ingame, I presume one is for not aiming, and other while aiming. In this case you will need help of a script to do any adjustment when the L2 is pressed (or not).
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm

Re: ( Help! ) Maxaim Di For PS4 ( Destiny )

Postby poachiche » Sun Aug 21, 2016 9:53 pm

If you look in the forum i have a very sweet 5000 dpi setting for destiny and i own pvpv with it and i have a scrip for it too

Code: Select all
define RAPIDFIRE_BUTTON = PS4_R2;
define RATE_OF_FIRE = 5;

define ONLY_WITH_SCOPE = TRUE;
define ANTI_RECOIL = 20;
define ANTI_RECOIL_LEFT = 0;
define ANTI_RECOIL_RIGHT = 0;

int rapidfire_enabled = FALSE;
int antirecoil_enabled = FALSE;

int hold_time, rest_time;

int anti_recoil;
int anti_recoil_left;
int anti_recoil_right;

init {
    hold_time = 500 / RATE_OF_FIRE;
    rest_time = hold_time - 20;
    if(rest_time < 0) rest_time = 0;

    // 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_EXTRA3)) {
        set_val(PS4_L1,100);
        set_val(PS4_R1,100);
    }

    // SCRIPT 2: RAPIDFIRE MOD
    if(event_press(CEMU_EXTRA1)) {
        rapidfire_enabled = !rapidfire_enabled;
    }
    if(rapidfire_enabled) {
        if(get_val(RAPIDFIRE_BUTTON)) {
            combo_run(RapidFire);
        } else if(combo_running(RapidFire)) {
            combo_stop(RapidFire);
        }
    }

    // SCRIPT 3: ANTI-RECOIL
    if(event_press(CEMU_EXTRA2)) {
        antirecoil_enabled = !antirecoil_enabled;
    }
    if(antirecoil_enabled) {
        if(!ONLY_WITH_SCOPE || get_val(PS4_L2)) {
            combo_run(AntiRecoil);
        }
    }
}

combo RapidFire {
    set_val(RAPIDFIRE_BUTTON, 100);
    wait(hold_time);
    set_val(RAPIDFIRE_BUTTON, 0);
    wait(rest_time);
    set_val(RAPIDFIRE_BUTTON, 0);
}

combo AntiRecoil { // This combo must be the last one
    if(get_val(PS4_R2)) {
    anti_recoil = get_val(10) + ANTI_RECOIL;
    if(anti_recoil > 100) anti_recoil = 100;
    set_val(10, anti_recoil);
    anti_recoil_left = get_val(9) -ANTI_RECOIL_LEFT;
    if(anti_recoil_left > 100) anti_recoil_left = 100;
    set_val(9, anti_recoil_left);
    anti_recoil_right = get_val(9) +ANTI_RECOIL_RIGHT;
    if(anti_recoil_right > 100) anti_recoil_right = 100;
    set_val(9, anti_recoil_right);}
you need to bind the anti recoil  and the rapid fire key if you want to use them i even have a extra key for super  so you should be set  simple script no bells and whisle  but for me its more then enough
}
this is my destiny script and it does what you aske with the 2 sensitivity
User avatar
poachiche
Command Sergeant Major
Command Sergeant Major
 
Posts: 116
Joined: Fri Oct 10, 2014 4:17 pm

Re: ( Help! ) Maxaim Di For PS4 ( Destiny )

Postby poachiche » Sun Aug 21, 2016 10:12 pm

Image
User avatar
poachiche
Command Sergeant Major
Command Sergeant Major
 
Posts: 116
Joined: Fri Oct 10, 2014 4:17 pm

Re: ( Help! ) Maxaim Di For PS4 ( Destiny )

Postby noilV8 » Mon Aug 22, 2016 12:22 pm

How you connect the Keyboard and Mouse on titan one? only have one usb! i dont know how to setup this.. any help?
User avatar
noilV8
Sergeant First Class
Sergeant First Class
 
Posts: 19
Joined: Tue Jul 26, 2016 11:25 pm

Re: ( Help! ) Maxaim Di For PS4 ( Destiny )

Postby J2Kbr » Mon Aug 22, 2016 12:26 pm

noilV8 wrote:How you connect the Keyboard and Mouse on titan one? only have one usb! i dont know how to setup this.. any help?

The support for Keyboard and Mouse is provided by MaxAim DI plugin. The MaxAim DI plugin captures the keyboard and mouse input from your PC, converts these inputs according to a layout you set and, through the Titan One device, sends your commands to console.

For example, the connections required to use on PS4:

(1) Titan One on PS4
(2) Titan One on PC (mini-USB cable)
(3) PS4 controller on Titan One

On PC, launch Gtuner and open the MaxAim plugin. MaxAim documentation:
http://www.consoletuner.com/kbase/maxai ... cation.htm

Here is a video of me playing BF4 on PS4 with Titan One and MaxAim DI:
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm

Re: ( Help! ) Maxaim Di For PS4 ( Destiny )

Postby Frashbrang » Mon Aug 29, 2016 1:03 pm

Hi j2kbr, nice footage. Do you have the maxaim settings for this including any gpc script? I'm struggling to make my own
User avatar
Frashbrang
Command Sergeant Major
Command Sergeant Major
 
Posts: 153
Joined: Sat Jul 16, 2016 4:02 pm

Re: ( Help! ) Maxaim Di For PS4 ( Destiny )

Postby J2Kbr » Fri Sep 02, 2016 6:08 pm

Sure, here it is:
Battlefield 4 (PS4).glf
(7.5 KiB) Downloaded 188 times
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 Gtuner Plugins Support

Who is online

Users browsing this forum: No registered users and 35 guests