Skip to content

Commit

Permalink
broke up poke message into smaller messages
Browse files Browse the repository at this point in the history
  • Loading branch information
harryxu2626 committed Feb 9, 2025
1 parent df68e42 commit 71b38ce
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bot.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,11 @@ teamspeak.on("clientconnect", async (connected) => {
const data = await res.json();

if (Object.keys(data).length === 0) {
client.poke("You have not registered your TeamSpeak Unique ID on your profile in the vZDC website. This is required to sync your rating and membership status, as well as assigning online position roles.\nYou can find your TeamSpeak Unique ID under `Tools>Identities`. You may have to hit the `Go Advanced` link next to the OK button if you do not see your Unique ID\nAfter you have added your Unique ID to your profile, please disconnect from the server and reconnect.");
client.poke("You have not registered your TeamSpeak Unique ID on your profile in the vZDC website.");
client.poke("This is required to sync your rating and membership status, and to assign online position roles.");
client.poke("Refer to the message from the bot on how to locate your Unique ID.")
client.message("You can find your TeamSpeak Unique ID under `Tools>Identities`. You may have to hit the `Go Advanced` link next to the OK button if you do not see your Unique ID");
client.message("After you have added your Unique ID to your profile, please disconnect from the server and reconnect.");
return;
}

Expand Down

0 comments on commit 71b38ce

Please sign in to comment.