The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

update faq disable command section

Luna 54545d8a 979749a6

+34 -22
+24 -7
app/(home)/faq.component.tsx
··· 47 47 title: "How do I set up Chat to Speech (TTS)?", 48 48 content: ( 49 49 <div> 50 - 51 50 <ol className="list-decimal list-inside marker:text-neutral-500 mb-4"> 52 51 <li> 53 52 <LinkTag href="/login?invite=true">Invite Wamellow</LinkTag> to your Server. If you do not own it, ask the server Administrators to add Wamellow. ··· 72 71 You can also watch the video tutorial below or <LinkTag href="https://youtu.be/NS5fZ1ltovE?si=8hE1o6BBELxAxJbH">watch it on YouTube</LinkTag>. 73 72 <iframe 74 73 className="mt-2 aspect-video rounded-lg" 75 - width={"100%"} 74 + width="100%" 76 75 src="https://www.youtube.com/embed/NS5fZ1ltovE?si=uODiGspuNGKPRQKp" 77 76 title="Wamellow Text to Speech tutorial" 78 77 allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share" ··· 85 84 title: "How do I disable a command for roles or channels?", 86 85 content: ( 87 86 <div> 88 - If you want to disable a command, essentially making that no member of your server can use the command but Server Administrators, you can do so within discord{"'"}s integration settings as shown in the video. 87 + <ol className="list-decimal list-inside marker:text-neutral-500 mb-4"> 88 + <li> 89 + In the Discord App, click on your servers' name and click {'"'}Settings{'"'} 90 + </li> 91 + <li> 92 + Then go to the tab {'"'}Integrations{'"'} in the {'"'}Apps{'"'} category. 93 + </li> 94 + <li> 95 + In the {'"'}Bots and Apps{'"'} list, find Wamellow and click on {'"'}Manage{'"'}. 96 + </li> 97 + <li> 98 + You can choose to disable commands for everyone by their roles, or only in certain channels. 99 + </li> 100 + <li> 101 + <span className="font-semibold">Done!</span> 🎉 102 + </li> 103 + </ol> 104 + 105 + You can also watch the video tutorial below or <LinkTag href="https://youtu.be/ehc0_whydu8?si=8hE1o6BBELxAxJbH">watch it on YouTube</LinkTag>. 89 106 <iframe 90 - className="mt-6 aspect-video rounded-lg" 107 + className="mt-2 aspect-video rounded-lg" 91 108 width="100%" 92 - src="https://c.lunish.nl/r/vkTh6Q.mp4" 93 - title="How to disable commands for roles or channels" 94 - allow="autoplay; picture-in-picture; web-share" 109 + src="https://www.youtube.com/embed/ehc0_whydu8?si=uODiGspuNGKPRQKp" 110 + title="How to disable slash commands from bots and apps in discord" 111 + allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share" 95 112 /> 96 113 </div> 97 114 )
+10 -15
app/[pathname]/page.tsx
··· 10 10 export default async function Home({ params }: Props) { 11 11 12 12 switch (params.pathname) { 13 - case "support": 14 - return redirect("https://discord.com/invite/DNyyA2HFM9"); 15 - case "vote": 16 - return redirect("https://top.gg/bot/1125449347451068437/vote" + utm); 17 - case "wumpus": 18 - return redirect("https://wumpus.store/bot/1125449347451068437" + utm); 13 + case "support": return redirect("https://discord.com/invite/DNyyA2HFM9"); 14 + case "vote": return redirect("https://top.gg/bot/1125449347451068437/vote" + utm); 15 + case "wumpus": return redirect("https://wumpus.store/bot/1125449347451068437" + utm); 19 16 case "invite": 20 17 case "add": 21 - case "get": 22 - return redirect("/login?invite=true"); 23 - case "logout": 24 - return redirect("/login?logout=true"); 18 + case "get": return redirect("/login?invite=true"); 19 + case "logout": return redirect("/login?logout=true"); 20 + case "docs": 21 + case "guides": return redirect("/docs/index"); 22 + case "ai": return redirect("/ai-gallery"); 23 + case "tts": return redirect("https://youtube.com/watch?v=NS5fZ1ltovE"); 24 + case "disable-commands": return redirect("https://youtube.com/watch?v=ehc0_whydu8"); 25 25 case "youtube": { 26 26 const res = await fetch("http://100.65.0.1:5001/?channel_id=UClWBeVcz5LUmcCN1gHG_GCg", fetchOptions) 27 27 .then((res) => res.json()) ··· 29 29 30 30 return redirect(res?.videoUrl || "https://www.youtube.com/channel/UClWBeVcz5LUmcCN1gHG_GCg"); 31 31 } 32 - case "docs": 33 - case "guides": 34 - return redirect("/docs/index"); 35 - case "ai": 36 - return redirect("/ai-gallery"); 37 32 } 38 33 39 34 notFound();