@ali00035 ok I will try it out

Latest posts made by ByGraf
-
RE: How to switch hotbar slots via script?
@czechhek said in How to switch hotbar slots via script?:
mc.playerController.updateController();
Thank u guys so much
-
RE: How to switch hotbar slots via script?
@mems ty so much ur really helping me
-
RE: How to switch hotbar slots via script?
@ali00035 I tested it and it didnt switch the slot
-
RE: How to make criticals turn off after 3 hits?
@romnaed
var count = 0;
var crit = moduleManager.getModule("Criticals");this.onAttack = function(event) {
count = count+1;
}this.onUpdate = function() {
if (count == 3){
crit.setState(false);
count = 0;
}
}something like this it could look like idk if it works
hope it helped
-
How to switch hotbar slots via script?
Is there a list of things like mc.gameSettings.keyBindUseItem.pressed where i can
look up some things because i cant find anything on google and i dont always want to ask in the Forum.And i really want to become better at scripting but as already mentioned i cant find
these things i want to look up . Any tips ?