Page 2 of 3

Re: GTA Online Wasabi Kitty Claw Script Request

PostPosted: Fri Mar 27, 2020 3:54 am
by Mad
volta1492 wrote: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.

Sure:
Code: Select all
int toggle;
 
main {
    if(get_val(XB1_LT) && event_press(XB1_Y)) {
        toggle = !toggle;
    }
 
    if(toggle) {
        combo_run(claw);
        combo_run(hangup);
    }
}
 
combo hangup {
    set_val(XB1_B, 100);
    wait(60);
    set_val(XB1_B, 0);
    wait(60);
}
 
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);
}

Re: GTA Online Wasabi Kitty Claw Script Request

PostPosted: Fri Mar 27, 2020 5:34 pm
by DontAtMe
Code: Select all
main {
  if((get_rumble(RUMBLE_A) == 16 || get_rumble(RUMBLE_A) == 17) && !get_rumble(RUMBLE_B)){
    combo_run(hang_up);
  }
}
 
combo hang_up {
  set_val(XB1_B, 100);
  wait(100);
  set_val(XB1_B, 0);
  wait(100);
  set_val(XB1_B, 100);
  wait(100);
  set_val(XB1_B, 0);
  wait(100);
}


Make sure your phones vibrate setting is on.
It will hang up on every call.

Re: GTA Online Wasabi Kitty Claw Script Request

PostPosted: Fri Mar 27, 2020 11:49 pm
by volta1492
Thanks SOOOO much Mad and DontAtMe! It totally worked but then I had an issue with the rapid B some how kicking me from the claw machine anywhere between the 5th and 10th attempt. I fiddled with the rapid values, but nothing worked. Then I thought to add just a push of the B at the end of the waiting period before it starts up again, and that seems like It worked! I also found out that you have to be close to the prizes to pick them up. After a bit of research, I found timing coordinates for each one, so all I got to do is change up the values for LY and LX. Now to play the waiting game....

Re: GTA Online Wasabi Kitty Claw Script Request

PostPosted: Fri Mar 27, 2020 11:52 pm
by volta1492
Code: Select all
int toggle;
 
main {
    if(get_val(XB1_RT) && event_press(XB1_Y)) {
        toggle = !toggle;
    }
 
    if(toggle) {
        combo_run(claw);
 
    }
}
 
 
combo claw {
    wait(1000);
    set_val(XB1_RIGHT, 100);
    wait(100);
    wait(4000);
    wait(1000);
    wait(1000);
    set_val(XB1_LY, -100);
    wait(3760);
    set_val(XB1_LX, 100);
    wait(2050);
    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);
    set_val(XB1_B, 100);
    wait(60);
    set_val(XB1_B, 0);
    wait(60);   
}

Re: GTA Online Wasabi Kitty Claw Script Request

PostPosted: Fri Mar 27, 2020 11:58 pm
by volta1492
Code: Select all
princessRobotBubblegumCoords := {LY: 3760, LX: 2050} ;
shinyWasabiKittyCoords := {LY: 3760, LX: 3770} ;
masterHentaiCoords := {LY: 2800, LX: 3200} ;
sakiCoords := {LY: 1590, LX: 3660} ;
humpyCoords := {LX: 400, LY: 2000} ;
grindyCoords := {LY: 3600, LX: 450} ;
smokeyCoords := {LY: 1900, LX: 450} ;
methyCoords := {LY: 20, LX: 3320} ;
poopyCoords := {LY: 1590, LX: 2280} ;
poopy2Coords := {LY: 2800, LX: 1550} ;

Re: GTA Online Wasabi Kitty Claw Script Request

PostPosted: Sat Mar 28, 2020 12:02 am
by volta1492
I hope this helps out anyone else that is trying to get these claw machine prizes!

Re: GTA Online Wasabi Kitty Claw Script Request

PostPosted: Sat Mar 28, 2020 12:08 am
by Mad
volta1492 wrote:I hope this helps out anyone else that is trying to get these claw machine prizes!

Thanks for sharing with us. :joia:

Re: GTA Online Wasabi Kitty Claw Script Request

PostPosted: Sun Mar 29, 2020 5:56 pm
by volta1492
I got my first plushie prize out of the claw machine!! It works!!The phone calls still mess up the flow sometimes, but not always. Thanks again Mad!!

Re: GTA Online Wasabi Kitty Claw Script Request

PostPosted: Tue Mar 31, 2020 5:25 am
by volta1492
3 down, 6 to go! So far it seems like it takes about 6-8 hours in the same session until you get one, but I've been going for the ones that they say are the hardest to get so hopefully the last 6 don't take as long.

Re: GTA Online Wasabi Kitty Claw Script Request

PostPosted: Wed Apr 01, 2020 1:55 am
by volta1492
Update: I tried for 18 hours on Saki with the coordinates above and all it did was move Master Hentai forward until he was meshed in-between with Saki and Poopy. I adjusted the coordinates to LY 1520 LX 3730 and I had him in 10 minutes!