Paradox/TBLWebappBotPublic · Community Store Listing

Webapp Demo Bot

ProfileTelegram
7 commands0 envUpdated 1mo agoCreated Dec 13, 2025
Back to folder

commands/_btest.js

javascript · 20 lines · click line # to share

1/**#command2name: /btest3answer: 4keyboard: 5parse_mode: 6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12let text= "demo webapp is updated, checkout the new design and new functions."13 14let d = await Bot.broadcast({15  method: "sendMessage",16  body: {17    text: text18  }19})20console.log(d)