Physics cursor: Difference between revisions
Jump to navigation
Jump to search
Guest-1052 (talk | contribs) (beautifier.io) |
Dat Hack3r (talk | contribs) m (IDK why that was there.) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<syntaxhighlight lang="javascript" line> | |||
/* Physics cursor script by fp, used for most physics parkour worlds. Often | /* Physics cursor script by fp, used for most physics parkour worlds. Often combined with the improved Guest cursors script and used with a ratelimit of 0 chars per second. */ | ||
keyConfig.cursorUp = ""; | keyConfig.cursorUp = ""; | ||
keyConfig.cursorDown = ""; | keyConfig.cursorDown = ""; | ||
Line 84: | Line 84: | ||
setInterval(tick, 1000 / 30); | setInterval(tick, 1000 / 30); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Scripts]] | [[Category:Scripts]] |
Latest revision as of 12:12, 20 November 2024
/* Physics cursor script by fp, used for most physics parkour worlds. Often combined with the improved Guest cursors script and used with a ratelimit of 0 chars per second. */
keyConfig.cursorUp = "";
keyConfig.cursorDown = "";
keyConfig.cursorLeft = "";
keyConfig.cursorRight = "";
var backpressureX = 0;
var backpressureY = 0;
var velocityX = 0;
var velocityY = 0;
var keyLeft = false;
var keyRight = false;
var keyUp = false;
document.addEventListener("keydown", function(e) {
if (checkKeyPress(e, "UP")) {
keyUp = true;
}
if (checkKeyPress(e, "LEFT")) {
keyLeft = true;
}
if (checkKeyPress(e, "RIGHT")) {
keyRight = true;
}
});
document.addEventListener("keyup", function(e) {
if (checkKeyPress(e, "UP")) {
keyUp = false;
}
if (checkKeyPress(e, "LEFT")) {
keyLeft = false;
}
if (checkKeyPress(e, "RIGHT")) {
keyRight = false;
}
});
function tick() {
backpressureY += velocityY + 0.7;
velocityY /= 1.2;
backpressureX += velocityX;
velocityX /= 1.2;
if (keyLeft) velocityX -= 2;
if (keyRight) velocityX += 2;
if (keyUp) {
moveCursor("down");
var char = getChar();
moveCursor("up");
if (char != " ") {
velocityY -= 3;
}
}
if (!keyLeft && !keyRight && Math.abs(velocityX) > 0.5) velocityX = 0;
if (backpressureY >= 1) {
backpressureY %= 1;
moveCursor("down");
if (getChar() != " ") {
moveCursor("up");
velocityY = 0;
}
} else if (backpressureY <= -1) {
backpressureY %= 1;
moveCursor("up");
if (getChar() != " ") {
moveCursor("down");
velocityY = 0;
}
}
if (backpressureX >= 1) {
backpressureX %= 1;
moveCursor("right");
if (getChar() != " ") {
velocityX = 0;
moveCursor("left");
}
} else if (backpressureX <= -1) {
backpressureX %= 1;
moveCursor("left");
if (getChar() != " ") {
velocityX = 0;
moveCursor("right");
}
}
};
setInterval(tick, 1000 / 30);