GTA Online Wasabi Kitty Claw Script Request

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

GTA Online Wasabi Kitty Claw Script Request

Postby volta1492 » Thu Mar 26, 2020 11:27 pm

Hi! I recently got the Titan One and was looking for a script for the Wasabi Kitty Claw Machine in GTA Online. It's totally random if you get anything from it and your aim has nothing to do with actually getting the prizes. It doesn't look like anyone has made one yet. Unfortunately, I don't know enough about writing scripts to make my own. Is there anyone out there that could write a simple script for this? Pretty much, (Xbox One controls) if the activation was something like if the LT was being held down the whole time and if you pressed Y to turn on/off then this would happen:

Right on D-pad
wait 5 sec
press and hold Up on Left Stick for 3 sec
press and hold Right on Left Stick for 3 sec
press A
wait 30 sec
REPEAT

Is there anyone out there that can make this? Thanks again for your time.
User avatar
volta1492
Master Sergeant
Master Sergeant
 
Posts: 40
Joined: Thu Mar 26, 2020 9:40 pm

Re: GTA Online Wasabi Kitty Claw Script Request

Postby Mad » Thu Mar 26, 2020 11:37 pm

Code: Select all
int toggle;
 
main {
    if(get_val(XB1_LT) && event_press(XB1_Y)) {
        toggle = !toggle;
    }
 
    if(toggle) {
        combo_run(claw);
    }
}
 
combo claw {
    set_val(XB1_RIGHT, 100);
    wait(100);
    wait(4000);
    wait(1000);
    set_val(XB1_LY, -100);
    wait(3000);
    set_val(XB1_LX, 100);
    wait(3000);
    set_val(XB1_A, 100);
    wait(100);
    wait(4000);
    wait(1000);
    wait(4000);
    wait(1000);
    wait(4000);
    wait(1000);
    wait(4000);
    wait(1000);
    wait(4000);
    wait(1000);
    wait(4000);
    wait(1000);
}
 
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord (2K / FPS)
Mad
Major General
Major General
 
Posts: 4533
Joined: Wed May 22, 2019 5:39 am

Re: GTA Online Wasabi Kitty Claw Script Request

Postby volta1492 » Thu Mar 26, 2020 11:42 pm

Holy Crap! That was fast!! Thank You SOOOOOOOO much Mad!! I'll test it ASAP and let you know how it works.
User avatar
volta1492
Master Sergeant
Master Sergeant
 
Posts: 40
Joined: Thu Mar 26, 2020 9:40 pm

Re: GTA Online Wasabi Kitty Claw Script Request

Postby Mad » Thu Mar 26, 2020 11:47 pm

volta1492 wrote:Holy Crap! That was fast!! Thank You SOOOOOOOO much Mad!! I'll test it ASAP and let you know how it works.

You're welcome. :joia: :joia:
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord (2K / FPS)
Mad
Major General
Major General
 
Posts: 4533
Joined: Wed May 22, 2019 5:39 am

Re: GTA Online Wasabi Kitty Claw Script Request

Postby volta1492 » Fri Mar 27, 2020 12:20 am

Hey Mad,
I tried it out and it works until the pressing of the A button. I ran it a few times pressing the A button on my own and it seems like it works, but for whatever reason the A isn't working. Do you think having a one second delay in between the right on the stick and the A would work? But just so you know that during one of the tests I was hitting A repeatedly while the claw was going right. I'm so confused. :(
User avatar
volta1492
Master Sergeant
Master Sergeant
 
Posts: 40
Joined: Thu Mar 26, 2020 9:40 pm

Re: GTA Online Wasabi Kitty Claw Script Request

Postby Mad » Fri Mar 27, 2020 12:26 am

Added another 1000ms
Code: Select all
int toggle;
 
main {
    if(get_val(XB1_LT) && event_press(XB1_Y)) {
        toggle = !toggle;
    }
 
    if(toggle) {
        combo_run(claw);
    }
}
 
combo claw {
    set_val(XB1_RIGHT, 100);
    wait(100);
    wait(4000);
    wait(1000);
    set_val(XB1_LY, -100);
    wait(3000);
    set_val(XB1_LX, 100);
    wait(3000);
    wait(1000);
    set_val(XB1_A, 100);
    wait(100);
    wait(4000);
    wait(1000);
    wait(4000);
    wait(1000);
    wait(4000);
    wait(1000);
    wait(4000);
    wait(1000);
    wait(4000);
    wait(1000);
    wait(4000);
    wait(1000);
}
 
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord (2K / FPS)
Mad
Major General
Major General
 
Posts: 4533
Joined: Wed May 22, 2019 5:39 am

Re: GTA Online Wasabi Kitty Claw Script Request

Postby volta1492 » Fri Mar 27, 2020 12:45 am

That did it!! Thanks again Mad!! I'll tweek the time values a little because I over estimated a little, but it's working, even as I type this! I love AFK Gaming!!
User avatar
volta1492
Master Sergeant
Master Sergeant
 
Posts: 40
Joined: Thu Mar 26, 2020 9:40 pm

Re: GTA Online Wasabi Kitty Claw Script Request

Postby Mad » Fri Mar 27, 2020 1:08 am

volta1492 wrote:That did it!! Thanks again Mad!! I'll tweek the time values a little because I over estimated a little, but it's working, even as I type this! I love AFK Gaming!!

Awesome, glad you got it working. :smile0517:
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord (2K / FPS)
Mad
Major General
Major General
 
Posts: 4533
Joined: Wed May 22, 2019 5:39 am

Re: GTA Online Wasabi Kitty Claw Script Request

Postby volta1492 » Fri Mar 27, 2020 1:29 am

Now we see how long until I actually win something from it...…
Thanks again Mad! :)
User avatar
volta1492
Master Sergeant
Master Sergeant
 
Posts: 40
Joined: Thu Mar 26, 2020 9:40 pm

Re: GTA Online Wasabi Kitty Claw Script Request

Postby volta1492 » Fri Mar 27, 2020 3:48 am

Hey Mad, I ran into an unforeseen issue. I will get in game phone calls that mess up the flow and I end up in the corner. Is it possible to have the B button being spammed rapidly throughout the whole process? This should hang up the phone calls ASAP and let the flow continue.
User avatar
volta1492
Master Sergeant
Master Sergeant
 
Posts: 40
Joined: Thu Mar 26, 2020 9:40 pm

Next

Return to GPC1 Script Programming

Who is online

Users browsing this forum: No registered users and 48 guests