Elder Scrolls Online Script Request PS4

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

Elder Scrolls Online Script Request PS4

Postby Josh213 » Mon Jan 27, 2020 5:04 am

I’m looking for a fairly detailed Script. It will be used in long boss fight sequences to maximum damage per second.
There are only 10 buttons commands, but it has light attack weaving (R2) after each skill used. I don’t know the exact timing
Needed because each skill has a different animation and cool
Down. I’m sure I am not giving all the information needed. I have no clue what exactly to ask for and I know this is extremely specific. It’s for a Magicka Dragon Knight. Someone may have done a similar script in the past. The sequence is listed below.

LA = Light Attack (R2 bumper)

L1 (Front-bar skills) Flames of Oblivion
Left D pad (animation cancel)
L1 (back-bar skills) Barbed Trap, LA, R1 Eruption,
Left D pad (animation cancel)
Square (front-bar) Searing Strike, LA, Triangle Engulfing Flames
Left D pad (animation cancel)
Square (back-bar) Wall of Elements, LA, Triangle Degeneration
Left D pad (animation cancel)
R1 (Front Bar) Force Pulse/LA x 6 rinse repeat.

Also, can skills be cast manually while the macro is running? Such as Heals/Shields (normally circle
For me), taking potions (up d pad) and Ultimates (L1+R1). I’m sure I left a ton of unanswered questions. I have zero idea what I’m doing. This is new to me. Any help and guidance would be appreciated.
User avatar
Josh213
Private First Class
Private First Class
 
Posts: 3
Joined: Mon Jan 27, 2020 4:37 am

Re: Elder Scrolls Online Script Request PS4

Postby J2Kbr » Mon Jan 27, 2020 9:54 am

Welcome to our forums.

With the information you provided we can start code the combo sequence. With the script done, you may just need adjust the timings.

Please let us know how do you want trigger the combo sequence. Single button press or a button combination press? Which? 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

Re: Elder Scrolls Online Script Request PS4

Postby Josh213 » Tue Jan 28, 2020 5:31 am

Single button would be preferred the Down on the d-pad. Thank for your help!!!!
User avatar
Josh213
Private First Class
Private First Class
 
Posts: 3
Joined: Mon Jan 27, 2020 4:37 am

Re: Elder Scrolls Online Script Request PS4

Postby J2Kbr » Tue Jan 28, 2020 6:09 pm

Thank you, here is the script.
Code: Select all
main {
    if(event_press(PS4_DOWN)) {
        combo_run(MyCombo);
    }
}
 
combo MyCombo {
    // LA = Light Attack (R2 bumper)
    set_val(PS4_R2, 100);
    wait(40);
    set_val(PS4_R2, 0);
    wait(40);
 
    // L1 (Front-bar skills) Flames of Oblivion
    set_val(PS4_L1, 100);
    wait(40);
    set_val(PS4_L1, 0);
    wait(40);
 
    // Left D pad (animation cancel)
    set_val(PS4_LEFT, 100);
    wait(40);
    set_val(PS4_LEFT, 0);
    wait(40);
 
    // L1 (back-bar skills) Barbed Trap, LA, R1 Eruption,
    set_val(PS4_L1, 100);
    wait(40);
    set_val(PS4_L1, 0);
    wait(40);
 
    // Left D pad (animation cancel)
    set_val(PS4_LEFT, 100);
    wait(40);
    set_val(PS4_LEFT, 0);
    wait(40);
 
    // Square (front-bar) Searing Strike, LA, Triangle Engulfing Flames
    set_val(PS4_SQUARE, 100);
    wait(40);
    set_val(PS4_SQUARE, 0);
    wait(40);
 
    // Left D pad (animation cancel)
    set_val(PS4_LEFT, 100);
    wait(40);
    set_val(PS4_LEFT, 0);
    wait(40);
 
    // Square (back-bar) Wall of Elements, LA, Triangle Degeneration
    set_val(PS4_SQUARE, 100);
    wait(40);
    set_val(PS4_SQUARE, 0);
    wait(40);
 
    // Left D pad (animation cancel)
    set_val(PS4_LEFT, 100);
    wait(40);
    set_val(PS4_LEFT, 0);
    wait(40);
 
    // R1 (Front Bar) Force Pulse/LA x 6 rinse repeat.
    set_val(PS4_R1, 100);
    wait(40);
    set_val(PS4_R1, 0);
    wait(40);
}
 
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: Elder Scrolls Online Script Request PS4

Postby Josh213 » Wed Jan 29, 2020 5:08 pm

Thank you!!!
User avatar
Josh213
Private First Class
Private First Class
 
Posts: 3
Joined: Mon Jan 27, 2020 4:37 am

Re: Elder Scrolls Online Script Request PS4

Postby Vonburner » Sat Feb 29, 2020 3:39 pm

^YOOOOOOOOOOOO this is life ive been working on mine for a minute i try this right now

// R1 (Front Bar) Force Pulse/LA x 6 rinse repeat. how in the work do you set this lol is there away to auto loop it

AHH I SEE WATS GOING ON ITS A BLUE PRINT BUT U HAVE TO PUT IT TOGETHER EASY CLIP
User avatar
Vonburner
Sergeant First Class
Sergeant First Class
 
Posts: 25
Joined: Wed Oct 09, 2019 1:47 am


Return to GPC1 Script Programming

Who is online

Users browsing this forum: No registered users and 20 guests