Sea Of Sweat (Sea Of Thieves)

Documentation, usage tips and configuration guides for Titan Two scripts and bytecodes published by the community users.

Sea Of Sweat (Sea Of Thieves)

Postby CrackerJack » Fri May 01, 2020 1:57 am

:smile0201:
Sea Of Sweat
Sea Of Thieves Basic Script

  1. Auto Sprint
    -
    when the left stick is above 80% will start spamming sprint unless your aiming down sight then it will not trigger

  1. Turbo Dig
    -
    Quick dig then quick switch automated in a combo (not a macro) set on a toggle Hold LEFT TRIGGER and press D-RIGHTto start it and will run untill u repeat the combo helps if u set d-right to the shovel in the game options but if u dont want to just pull it out b4 u start script
**might not work if your pluged into a pc


  1. Ladder Grabby
    -
    To be used when trying to board a moving ship after holding down x +2seconds will spam x to help in grabbing the ladder


  1. Bunny Hop
    -
    After holding jump for +2 Seconds will spam it as long as its held


  1. ADS STABLE
    #define HIP_SCALING 2.40
    (adjust this 1.00 is default)
    -



Just a simple script that i use when i play iv been tweaking it for a wile and i think its really a big help in game
plan to clean it up a bit more
Last edited by CrackerJack on Fri May 29, 2020 9:14 pm, edited 2 times in total.
User avatar
CrackerJack
Sergeant First Class
Sergeant First Class
 
Posts: 25
Joined: Fri May 01, 2020 1:15 am
Location: cleveland OHIO

Re: Sea Of Sweat (Sea Of Thieves)

Postby CrackerJack » Fri May 01, 2020 1:58 am

Code: Select all
#pragma METAINFO("Sea Of Sweat", 4, 1, "<CrackerJack>")
#define HIP_SCALING     2.40
bool bhophophop=FALSE;
bool bdigdigdig=FALSE;
bool brunrunrun=FALSE;
main {
//DIG = auto quick dig when holding BUTTON_10(Dpad UP)
if (is_active(BUTTON_13) && is_active(BUTTON_8)) bdigdigdig = !bdigdigdig;
if (bdigdigdig) combo_run(cDigDug123);
if (event_release(BUTTON_13)) combo_stop(cDigDug123);
//LADDER = hold x to spam x quickly for grabbing ladders
if (check_active(BUTTON_17,2000)) combo_run(claddergrabby);
if (event_release(BUTTON_17)) combo_stop(claddergrabby);
//RUN = when left stick is 100% will spam BUTTON_6(Left Stick Click) to keep player sprinting
if ((is_release(BUTTON_8)) && (get_actual(STICK_2_Y) <=  -80.0)) brunrunrun = TRUE;   
if (get_actual(STICK_2_Y) >=  -80.0) brunrunrun = FALSE;
    if (brunrunrun) combo_run(crunningman);
//BHOP = when BUTTON_8(Left Trigger) & BUTTON_6(Right Stick Click) are pressed will toggle bunny hopping on/off
if (check_active(BUTTON_16,2000)) bhophophop = !bhophophop;
if (bhophophop) combo_run(cbhoplock);
if (is_active(BUTTON_8) && is_active(BUTTON_4)) bhophophop = TRUE;
if (event_release(BUTTON_16))bhophophop = FALSE;
}
//STABLEIZES JOYSTICK ON ADS 1.00 = DEFAULT
//CODE FROM "Buffy" on forums Thanks   (viewtopic.php?f=26&t=15326)
    if(!is_active(BUTTON_8)) {
        set_val(STICK_1_X, clamp(get_actual(STICK_1_X) * HIP_SCALING, -100.0, 100.0));
        set_val(STICK_1_Y, clamp(get_actual(STICK_1_Y) * HIP_SCALING, -100.0, 100.0));
    }
combo cbhoplock {
set_val(BUTTON_16,100);
   wait(15);
  set_val(BUTTON_16,0)
     wait(30);
    }
combo crunningman {
set_val(BUTTON_9,200);
   wait(20);
    set_val(BUTTON_9,0)
     wait(20);
    }
combo claddergrabby {
set_val(BUTTON_17,200);
   wait(20);
    set_val(BUTTON_17,0)
     wait(20);
}
combo cDigDug123 {
    set_val(BUTTON_5,200);
    wait(105);
    set_val(BUTTON_5,0);
    wait(1700);     +
    set_val(BUTTON_15,200);
    wait(119);
    set_val(BUTTON_15,0);
    wait(90);
    set_val(BUTTON_15,200);
    wait(80);
    set_val(BUTTON_15,0);
    wait(427);
}
 
Last edited by CrackerJack on Fri May 29, 2020 9:11 pm, edited 1 time in total.
User avatar
CrackerJack
Sergeant First Class
Sergeant First Class
 
Posts: 25
Joined: Fri May 01, 2020 1:15 am
Location: cleveland OHIO

Re: Sea Of Sweat (Sea Of Thieves)

Postby Mad » Fri May 01, 2020 4:12 am

Thanks for sharing with us CrackerJack.

You should upload it to the online resource section in Gtuner IV. :smile0517:
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord
Mad
Major General
Major General
 
Posts: 4536
Joined: Wed May 22, 2019 5:39 am

Re: Sea Of Sweat (Sea Of Thieves)

Postby CrackerJack » Sat May 02, 2020 9:59 am

i tried and kept getting an error i wana do a little more anyway .
User avatar
CrackerJack
Sergeant First Class
Sergeant First Class
 
Posts: 25
Joined: Fri May 01, 2020 1:15 am
Location: cleveland OHIO

Re: Sea Of Sweat (Sea Of Thieves)

Postby CrackerJack » Fri May 29, 2020 9:15 pm

UPDATE CODE on 5/29

-add ADS STABLE
User avatar
CrackerJack
Sergeant First Class
Sergeant First Class
 
Posts: 25
Joined: Fri May 01, 2020 1:15 am
Location: cleveland OHIO

Re: Sea Of Sweat (Sea Of Thieves)

Postby zecchini » Sun Sep 20, 2020 2:13 am

hello, is it possible to have this gamepack on titan one??thanks in advance ;D
User avatar
zecchini
Private First Class
Private First Class
 
Posts: 3
Joined: Sat Sep 19, 2020 10:43 pm


Return to User's Script Documentation

Who is online

Users browsing this forum: No registered users and 109 guests