parent
af25a39f44
commit
ca0303590a
|
@ -40,7 +40,7 @@ client.on("a", (msg) => {
|
||||||
|
|
||||||
switch (cmd) {
|
switch (cmd) {
|
||||||
case "dvd!help":
|
case "dvd!help":
|
||||||
chat("cmds: dvd!help // dvd!cursor");
|
chat("cmds: dvd!help // dvd!cursor // dvd!stats");
|
||||||
break;
|
break;
|
||||||
case "dvd!cursor":
|
case "dvd!cursor":
|
||||||
if (!argcat || argcat == "") {
|
if (!argcat || argcat == "") {
|
||||||
|
@ -97,19 +97,14 @@ var cursorupdate = setInterval(function() {
|
||||||
vel.y = -vel.y;
|
vel.y = -vel.y;
|
||||||
}
|
}
|
||||||
if ((pos.x >= 50) && (pos.y >= 50)) {
|
if ((pos.x >= 50) && (pos.y >= 50)) {
|
||||||
console.log("corner hit");
|
|
||||||
cornerhits += 1;
|
cornerhits += 1;
|
||||||
} else if ((pos.x >= 50) && (pos.y <= -50)) {
|
} else if ((pos.x >= 50) && (pos.y <= -50)) {
|
||||||
console.log("corner hit");
|
|
||||||
cornerhits += 1;
|
cornerhits += 1;
|
||||||
} else if ((pos.x <= -50) && (pos.y <= -50)) {
|
} else if ((pos.x <= -50) && (pos.y <= -50)) {
|
||||||
console.log("corner hit");
|
|
||||||
cornerhits += 1;
|
cornerhits += 1;
|
||||||
} else if ((pos.x <= -50) && (pos.y >= 50)) {
|
} else if ((pos.x <= -50) && (pos.y >= 50)) {
|
||||||
console.log("corner hit");
|
|
||||||
cornerhits += 1;
|
cornerhits += 1;
|
||||||
} else if ((pos.x >= 50) || (pos.y >= 50) || (pos.y <= -50) || (pos.x <= -50)) {
|
} else if ((pos.x >= 50) || (pos.y >= 50) || (pos.y <= -50) || (pos.x <= -50)) {
|
||||||
console.log("edge hit");
|
|
||||||
edgehits += 1;
|
edgehits += 1;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue