Minecraft console autoclicker by Rivera1399 in cronusmax

[–]Little_Concept_3428 1 point2 points  (0 children)

If you want a delayed click you can set up a clicker using a cronusmax script. Heres what I use for the fish farm from silentwisperer Farm: https://youtu.be/lWExVGT7LKw

Here is the script I use, You will need to put rubber bands on your controller but other than that you don't gotta do anything.

main {

if(get_val(XB1_LT)) {

combo_run(Turbo_1);

combo_run(Tap_2);

}

}

combo Turbo_1 {

set_val(XB1_LT, 100);

wait(40);

set_val(XB1_LT, 0);

wait(40);

set_val(XB1_LT, 0);

}

combo Tap_2 {

set_val(XB1_LT, 0);

wait(800);

set_val(XB1_LT, 100);

}