📅  最后修改于: 2023-12-03 15:03:11.638000             🧑  作者: Mango
Noblox Shout 命令是针对 Roblox 开放平台的一个 Javascript 库,它提供了一套简单易用的方法,用于在 Roblox 游戏中发送 shout 消息。
你可以使用 npm 包管理工具来安装 Noblox Shout 命令:
npm install noblox-shout
以下是一个简单的使用 Noblox Shout 命令的例子:
// 引入 noblox-shout 模块
const noblox = require('noblox-shout');
// 设置账号登录凭证
const cookie = 'YOUR_ROBLOX_COOKIE';
// 登录到 Roblox
noblox.setCookie(cookie);
// 发送 shout 消息
noblox.shout(123456, 'Hello world!').then(() => {
console.log('Shout 发送成功!');
}).catch((err) => {
console.error('Shout 发送失败:', err);
});
setCookie(cookie: string): void
设置 Roblox 登录凭证(cookie)。
shout(groupId: number, message: string): Promise<void>
发送 shout 消息到指定的群组。
groupId
- 群组的 ID。message
- 要发送的 shout 消息。clearShout(groupId: number): Promise<void>
清除指定群组的 shout 消息。
groupId
- 群组的 ID。