chore: init
This commit is contained in:
@@ -536,6 +536,7 @@ export default definePlugin({
|
|||||||
<Menu.MenuCheckboxItem
|
<Menu.MenuCheckboxItem
|
||||||
key={badge.id}
|
key={badge.id}
|
||||||
id={`badge-${badge.id}`}
|
id={`badge-${badge.id}`}
|
||||||
|
// edited here to fix some error
|
||||||
// label={
|
// label={
|
||||||
// <div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
|
// <div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
|
||||||
// <img
|
// <img
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ function SealDarkFountainDecoration({
|
|||||||
}: {
|
}: {
|
||||||
message: Message;
|
message: Message;
|
||||||
}) {
|
}) {
|
||||||
if (/dark (fountain|world)/gi.test(message.content) && /(delta(rune|goon))|prophecy/gi.test(message.content) || /^(hop|get) on deltarune/i.test(message.content.toLowerCase())) {
|
if (/dark (fountain|world)/gi.test(message.content) && /(delta(rune|goon))|prophecy/gi.test(message.content) || /^((hop|get) on|g[ie]t g(u|oo)d (@|at)) delta(rune|goon)/i.test(message.content.toLowerCase())) {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Button type="button" variant="link" onClick={a => open("steam://rungameid/1671210")}>
|
<Button type="button" variant="link" onClick={a => open("steam://rungameid/1671210")}>
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ import definePlugin from "@utils/types";
|
|||||||
|
|
||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "NSFWGateBypass",
|
name: "NSFWGateBypass",
|
||||||
description: "Bypasses Age Verification",
|
description: "Allows you to access NSFW channels without setting/verifying your age",
|
||||||
authors: [Devs.Commandtechno],
|
authors: [Devs.Commandtechno],
|
||||||
patches: [
|
patches: [
|
||||||
{
|
{
|
||||||
@@ -29,11 +29,11 @@ export default definePlugin({
|
|||||||
replacement: [
|
replacement: [
|
||||||
{
|
{
|
||||||
match: /(?<=\.nsfwAllowed=)null!=.+?(?=[,;])/,
|
match: /(?<=\.nsfwAllowed=)null!=.+?(?=[,;])/,
|
||||||
replace: "true", // true
|
replace: "true",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
match: /(?<=\.ageVerificationStatus=)null!=.+?(?=[,;])/,
|
match: /(?<=\.ageVerificationStatus=)null!=.+?(?=[,;])/,
|
||||||
replace: "3", // 3=VERIFIED_ADULT
|
replace: "3", // VERIFIED_ADULT
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user