Just bought Titan Two

Titan Two general support. Questions, firmware update, feature request.

Just bought Titan Two

Postby Bigrumba » Tue Oct 02, 2018 9:13 am

I am pretty Wedded to the Xim Apex and bought the Titan Two for the scripts, aka Anti recoil for PUBG, i am old and my wrists arent what they used to be

my question is, i can see you can load a PUBG pack into the Titan Two, will this be sufficient or will i have to learn how to code these scripts to make it work in game?
User avatar
Bigrumba
Sergeant First Class
Sergeant First Class
 
Posts: 20
Joined: Tue Oct 02, 2018 9:11 am

Re: Just bought Titan Two

Postby Prototype » Tue Oct 02, 2018 9:17 am

The gamepacks are made for the users that don't want to code anything. You have just to select your Mods and set your timings with an interactive configuration.
Console tuner since my 1st controller.
Scripting, a game in the game.
Believe or dare, It's Titanic! :smile0517:
User avatar
Prototype
Major General
Major General
 
Posts: 3252
Joined: Sun Dec 16, 2012 1:43 pm

Re: Just bought Titan Two

Postby Bigrumba » Tue Oct 02, 2018 9:28 am

prototype wrote:The gamepacks are made for the users that don't want to code anything. You have just to select your Mods and set your timings with an interactive configuration.



thank you, just read that the gamepacks are just for controller
will the anti recoil work in the standard game packs with KB&M?
User avatar
Bigrumba
Sergeant First Class
Sergeant First Class
 
Posts: 20
Joined: Tue Oct 02, 2018 9:11 am

Re: Just bought Titan Two

Postby Prototype » Tue Oct 02, 2018 10:30 am

Not sure about that because i never play with KB&M but there is some gamepacks with the KB&M option.
Console tuner since my 1st controller.
Scripting, a game in the game.
Believe or dare, It's Titanic! :smile0517:
User avatar
Prototype
Major General
Major General
 
Posts: 3252
Joined: Sun Dec 16, 2012 1:43 pm

Re: Just bought Titan Two

Postby J2Kbr » Fri Oct 05, 2018 7:42 am

The anti-recoil implemented on scripts and gamepacks usually are focused when playing with controller's stick for aiming, this does not works good for mouse (XIM/Apex). If the mouse is plugged directly to the Titan Two the best anti-recoil options is using the mxyconverter_voffset() GPC function, example:
Code: Select all
main {
    if(event_active(BUTTON_5)) {
        mxyconverter_voffset(29); // ANTI-RECOIL
    } else if(event_release(BUTTON_5)) {
        mxyconverter_voffset(0);
    }
}
 
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: Just bought Titan Two

Postby bonefisher » Fri Oct 05, 2018 8:25 pm

Code: Select all
 
#include <mouse.gph>
 
#define vertical_compensation 24 //pull force
 
init {
    const uint8 mmap[] = {
        MOUSE_X,            STICK_1_X,
        MOUSE_Y,            STICK_1_Y,
        MWHEEL_FORWARD,     BUTTON_17,
        MWHEEL_BACKWARD,    BUTTON_6,
        MBUTTON_1,          BUTTON_5,
        MBUTTON_2,          BUTTON_8,
        MBUTTON_3,          BUTTON_14,
        MBUTTON_4,          BUTTON_15,
        MBUTTON_5,          BUTTON_16,
    }; mousemapping(mmap);
}
main {
    if(event_active(BUTTON_5)) {
        mxyconverter_voffset(vertical_compensation);
    } else if(event_release(BUTTON_5)) {
        mxyconverter_voffset(0);
    }
    if(is_active(STICK_1_Y)){mxyconverter_voffset(0);
    }else if(is_release(STICK_1_Y) && is_active(BUTTON_5)){
        mxyconverter_voffset(vertical_compensation);
    }
    if(is_active(STICK_1_X)){mxyconverter_voffset(0);
    }else if(is_release(STICK_1_X) && is_active(BUTTON_5)){
        mxyconverter_voffset(vertical_compensation);
    }
}
 

Here try this when using direct mouse hook up and use my other simple anti-recoil for Apex users or controllers!
bonefisher
Lieutenant General
Lieutenant General
 
Posts: 5413
Joined: Thu Jan 29, 2015 10:49 am


Return to Titan Two Device

Who is online

Users browsing this forum: No registered users and 219 guests