got bored and I'm too lazy to do the reset...
maybe I'll come back 10 eons later and finish this.
feat: desync bypasses #7
feat/desync into main aight bet
hm (that's weird) its just stuck on initializing game...
@ee6-lang wrote in RealPacket/VapeForMiniblox#7 (comment):
hm (that's weird)
uhh idk lol
worked for me, did he change something? lol
either way, I need to re-setup my system since yesterday I reinstalled Fedora KDE.
oh ok idk 🤷
hey RealPacket if you have time could you fix this up for me?
const AutoFunnyChat = new Module("AutoFunnyChat", function(callback) {
if (!callback) {
delete tickLoop["AutoFunnyChat"];
if (window.__autoFunnyKillMsgListener) {
ClientSocket.off && ClientSocket.off("CPacketMessage", window.__autoFunnyKillMsgListener);
window.__autoFunnyKillMsgListener = undefined;
}
return;
}
// Periodic random funny message
let lastSent = 0;
tickLoop["AutoFunnyChat"] = function() {
if (Date.now() - lastSent > 50000) { // Sends every 50 seconds
const msg = funnyMessages[Math.floor(Math.random() * funnyMessages.length)];
ClientSocket.sendPacket(new SPacketMessage({text: msg}));
lastSent = Date.now();
}
};
// Also send on kill events (Miniblox chat detection)
if (!window.__autoFunnyKillMsgListener) {
window.__autoFunnyKillMsgListener = function(h) {
if (
h.text &&
(
h.text.includes("You eliminated") ||
h.text.includes("You knocked out") ||
h.text.includes("You sent") ||
(h.text.includes("eliminated by") && h.text.includes(player.name)) ||
h.text.includes(player.name + " eliminated")
)
) {
const msg = funnyMessages[Math.floor(Math.random() * funnyMessages.length)];
setTimeout(function() {
ClientSocket.sendPacket(new SPacketMessage({text: msg}));
}, 500 + Math.random() * 1000); // slight delay for realism
}
};
ClientSocket.on("CPacketMessage", window.__autoFunnyKillMsgListener);
}
});
Could you aim this towards the player that was slain pls (ie. Rope got clapped by Atmosphere!)
why are you storing the callback var in the window obj lol
either way ok
it's not working because ClientSocket.on doesn't exist, try using ClientSocket.socket.off or etc. from the ClientSocket.socket field
ohhh ok 👍
I made a multiblock scaffold (New scaffold update?!) see here (I also removed auto-rotation)
btw miniblox got rid of miniblox.io and now it's miniblox.online 🥀
@ee6-lang LOOOL THEY SCALED DOWN I THINK, barely anyone played it or something and now it's only parkour, survival, and creative.
no way that's crazy in the big 25?
so no more minigames or (miniblox.io) got it thanks for telling me
does minefun have a less stricter ac?
cause I saw eject client for minefun?
and there are the same skins that are used in miniblox.io
@ee6-lang wrote in RealPacket/VapeForMiniblox#7 (comment):
next ig is minefun to hack
does minefun have a less stricter ac?\
cause I saw eject client for minefun?
and there are the same skins that are used in miniblox.online
also you can still play the minigames since the servers are still there but only mobile players and updated translation layer users can play it lol, it's unlisted from the websites.
also eject is paid and only really for heuristic acs that try to look for the smallest deviations from normal aim lol
@RealPacket wrote in RealPacket/VapeForMiniblox#7 (comment):
@ee6-lang wrote in #7 (comment):
next ig is minefun to hack
does minefun have a less stricter ac?
cause I saw eject client for minefun?
and there are the same skins that are used in miniblox.onlinealso you can still play the minigames since the servers are still there but only mobile players and updated translation layer users can play it lol, it's unlisted from the websites.
ohhh ok
@RealPacket its back to miniblox.io. we can access mini games again!!
fixed the desync stopping all movement but now I need to fix the position not being interpolated
maybe tomorrow
oh ok imma test this now if there is anything not working I'll tell you @RealPacket
good news @RealPacket fly and nofall work with the desync
ur a genius!
I use the fly with 0.19 speed (so <0.2 speed)
@ee6-lang wrote in RealPacket/VapeForMiniblox#7 (comment):
fr
Now (with this desync) Could we make a blink module?
Yes, simply hold all the movement packets and the input packet so miniblox doesn't try to simulate you to where you're blinking to lol.
@RealPacket wrote in RealPacket/VapeForMiniblox#7 (comment):
@ee6-lang wrote in #7 (comment):
fr
Now (with this desync) Could we make a blink module?Yes, simply hold all the movement packets and the input packet so miniblox doesn't try to simulate you to where you're blinking to lol.
k got it thanks! @RealPacket
How can we permanently force Creative mode on a server that defaults to Survival? At the moment, Creative only lasts for about 5 seconds before it automatically switches back to Survival.
const creative = new Module("CreativeMode", function(callback) {
if (callback) {
if (player) player.setGamemode(GameMode.fromId("creative"));
creative.toggle();
}
});
and then we would possibly need a desync for the fly (in the creative mode togglement)
@ee6-lang wrote in RealPacket/VapeForMiniblox#7 (comment):
How can we permanently force Creative mode on a server that defaults to Survival? At the moment, Creative only lasts for about 5 seconds before it automatically switches back to Survival.
const creative = new Module("CreativeMode", function(callback) { if (callback) { if (player) player.setGamemode(GameMode.fromId("creative")); creative.toggle(); } });and then we would possibly need a desync for the fly (in the creative mode togglement)
Why, can you pull out items from the creative mode item selector (if so then vector is retarded yet again lmao)?
2545354e31
to 39ad362931
@RealPacket wrote in RealPacket/VapeForMiniblox#7 (comment):
@ee6-lang wrote in #7 (comment):
How can we permanently force Creative mode on a server that defaults to Survival? At the moment, Creative only lasts for about 5 seconds before it automatically switches back to Survival.
const creative = new Module("CreativeMode", function(callback) { if (callback) { if (player) player.setGamemode(GameMode.fromId("creative")); creative.toggle(); } });and then we would possibly need a desync for the fly (in the creative mode togglement)
Why, can you pull out items from the creative mode item selector (if so then vector is retarded yet again lmao)?
I can but it vanishes and forces you back into survival or adventure
ForceOP Module (could be next to do.. like banning the owner, having access to possible owner/mod commands and command block modifications) - this is from ProgMEM-CC
@ee6-lang wrote in RealPacket/VapeForMiniblox#7 (comment):
Archived 💀
yea, use mine instead: https://github.com/Miniblox-Cheaters/MinibloxTranslationLayer
also he hasn't archived his codeberg repos lol
@RealPacket wrote in RealPacket/VapeForMiniblox#7 (comment):
@ee6-lang wrote in #7 (comment):
image
Archived 💀yea, use mine instead: https://github.com/Miniblox-Cheaters/MinibloxTranslationLayer
also he hasn't archived his codeberg repos lol
oh I did not notice that lol and ok
👍
I should probably fix the conflicts and FINALLY MERGE THIS... lol
39ad362931
to 8de5de85bc
ok let me test this now
it works
No due date set.
No dependencies set.
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?