Welcome on MasterOf13FPS! MasterOf13FPS

Register today or sign up if you are already a member and never miss any cool content again :)

Rotation in Gui Chest

SageDEV

New member
Joined
Dec 29, 2020
Messages
179
Reaction score
38
Points
0
how to make it so that when the chest stealer is steal chest, can be rotate in a gui chest?
 
Last edited:
thats what i use
if (mc.currentScreen instanceof GuiChest) {
if (mouse) {
mc.inGameHasFocus = true;
mc.mouseHelper.grabMouseCursor();
}
if (!mouse) {
mc.inGameHasFocus = false;
}
}
 
thats what i use
if (mc.currentScreen instanceof GuiChest) {
if (mouse) {
mc.inGameHasFocus = true;
mc.mouseHelper.grabMouseCursor();
}
if (!mouse) {
mc.inGameHasFocus = false;
}
}
mc.grabCursor removes the mouser pointer can be deleted
 
thats what i use
if (mc.currentScreen instanceof GuiChest) {
if (mouse) {
mc.inGameHasFocus = true;
mc.mouseHelper.grabMouseCursor();
}
if (!mouse) {
mc.inGameHasFocus = false;
}
}
in chest stealer?
 
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top