Razer Wolverine Focus and Agile Script Help Needed

GPC2 script programming for Titan Two. Code examples, questions, requests.

Razer Wolverine Focus and Agile Script Help Needed

Postby Kupo » Wed Nov 18, 2020 11:18 pm

need a script for the razer wolverine controller has two settings within the razer synapse app called focus and agile you assign any of the 2 on a remap and as you press the button it will kick in so focus allows for you to play max sensitivity and slow it down when the button is pressed to very low sensitivity and agile allows for the opposite of that so instead of max sensitivity it will be slow to fast when the button is pressed for better aim the help will be appreciated thanks. :smile0201:
User avatar
Kupo
Sergeant
Sergeant
 
Posts: 6
Joined: Wed Nov 18, 2020 10:56 pm

Re: Razer Wolverine Focus and Agile Script Help Needed

Postby J2Kbr » Thu Nov 19, 2020 11:12 am

With the Titan Two you can implement a script that can behave similarly as you described (change the thumbstick sensitivity via button toggle). Please note, however, is not technically possible for the Titan Two interact with Razer Synapse App, which seems is what you are requesting.
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: Razer Wolverine Focus and Agile Script Help Needed

Postby Mad » Thu Nov 19, 2020 6:42 pm

If you have the controller connected to your PC and synapse open and use Gtuner's KMG capture, you should be able to use those functions.
https://www.consoletuner.com/wiki/index ... kmgcapture

Here is an example of sensitivity change via script:

https://www.consoletuner.com/wiki/index ... ensitivity
Code: Select all
#define SENSITIVITY  2.0
 
main {
    if (get_val(BUTTON_9)) {
      set_val(STICK_1_X, clamp(get_val(STICK_1_X) * SENSITIVITY, -100.0, 100.0));
      set_val(STICK_1_Y, clamp(get_val(STICK_1_Y) * SENSITIVITY, -100.0, 100.0));
    }
}
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord
Mad
Major General
Major General
 
Posts: 4536
Joined: Wed May 22, 2019 5:39 am

Re: Razer Wolverine Focus and Agile Script Help Needed

Postby Kupo » Thu Nov 19, 2020 7:53 pm

J2Kbr wrote:With the Titan Two you can implement a script that can behave similarly as you described (change the thumbstick sensitivity via button toggle). Please note, however, is not technically possible for the Titan Two interact with Razer Synapse App, which seems is what you are requesting.
is there any chance you can makeit even if its similar that would be ok thank you
User avatar
Kupo
Sergeant
Sergeant
 
Posts: 6
Joined: Wed Nov 18, 2020 10:56 pm

Re: Razer Wolverine Focus and Agile Script Help Needed

Postby Kupo » Thu Nov 19, 2020 7:57 pm

Mad wrote:If you have the controller connected to your PC and synapse open and use Gtuner's KMG capture, you should be able to use those functions.
https://www.consoletuner.com/wiki/index ... kmgcapture

Here is an example of sensitivity change via script:

https://www.consoletuner.com/wiki/index ... ensitivity
Code: Select all
#define SENSITIVITY  2.0
 
main {
    if (get_val(BUTTON_9)) {
      set_val(STICK_1_X, clamp(get_val(STICK_1_X) * SENSITIVITY, -100.0, 100.0));
      set_val(STICK_1_Y, clamp(get_val(STICK_1_Y) * SENSITIVITY, -100.0, 100.0));
    }
}
thanks mad for the sense of direction ill fiddle around with what you recommended when i get the time really appreciate the input always see and hear great things from these forums you guys are great
User avatar
Kupo
Sergeant
Sergeant
 
Posts: 6
Joined: Wed Nov 18, 2020 10:56 pm


Return to GPC2 Script Programming

Who is online

Users browsing this forum: Google [Bot] and 51 guests