fork download
  1. from nextcord.ext import commands
  2. import nextcord
  3. import os
  4. from requests import post, Session , get
  5. import datetime
  6. import math
  7. from re import match
  8.  
  9.  
  10. intents = nextcord.Intents.default()
  11. intents.messages = True # Enable message content intent
  12. intents.message_content = True
  13. intents.typing = False
  14. client = commands.Bot(command_prefix = '/')
  15.  
  16. @client.event
  17. async def on_ready():
  18. print(f'Successfully logged in as {client.user}')
  19.  
  20.  
  21. @client.event
  22. async def on_message(message):
  23. await client.process_commands(message)
  24.  
  25.  
  26. @client.command()
  27. async def hello(ctx):
  28. await ctx.channel.send(f'Hello! {ctx.author}')
  29.  
  30. TOKEN = "MTMxMjAzNTMzMzc5NzMxODY4Ng.G65O_7.lW0TJfUE-9I5HVi2N2xJTI0SGp00bN0fnKi--A" #token บอท
  31. phone = "0984267600"
  32. guildid = 1335184514892169316 #ไอดีเซิฟดิส
  33.  
  34. botsever = commands.Bot(help_command=None)
  35.  
  36.  
  37.  
  38. @botsever.event
  39. async def on_ready():
  40. print(f"BOT Online : {botsever.user}")
  41. await botsever.change_presence(activity=nextcord.Streaming(name="🟢",url="https://c...content-available-to-author-only...p.com/attachments/1148136573259489364/1154852437287510026/SILENT_GFX_2_ANIME_BANNER_6_1_1.png?ex=65152265&is=6513d0e5&hm=efb708788f7809f8d42cf0f75eba317ffc2581c0d3559ddb975741cc26bd2ad3&"))
  42.  
  43.  
  44. class Topup(nextcord.ui.Modal):
  45. def __init__(self):
  46. super().__init__("คำสั่งโดเนท")
  47. self.topup = nextcord.ui.TextInput(
  48. label="เติมเงินด้วยอังเปา (ห้ามมีตัว # อยู่ในลิงค์)",
  49. placeholder="กรอกลิงค์ซองอั่งเปา",
  50. required=True
  51. )
  52. self.add_item(self.topup)
  53. async def callback(self, interaction: nextcord.Interaction):
  54.  
  55. if (not match (r"https:\/\/gift\.truemoney\.com\/campaign\/\?v=+[a-zA-Z0-9]{18}", self.topup.value)):
  56. await interaction.send(f"เหมือนคุณจะกวนตีนบอท", ephemeral = True)
  57. return
  58. voucher_code = self.topup.value.split("?v=")[1]
  59. response = requests.post(f"https://g...content-available-to-author-only...y.com/campaign/vouchers/{voucher_code}/redeem",json={"mobile": phone, "voucher_hash": voucher_code},headers={"Accept": "application/json","User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36","Content-Type": "application/json","Origin": "https://g...content-available-to-author-only...y.com","Accept-Language": "en-US,en;q=0.9","Connection": "keep-alive",})
  60. redeemdata = response.json()
  61. if response.status_code == 200 and redeemdata["status"]["code"] == "SUCCESS" :
  62. amount = float(redeemdata["data"]["my_ticket"]["amount_baht"])
  63.  
  64.  
  65. done = nextcord.Embed(description=f'`✅ : โดเนทสำเร็จ` `|` จำนวน `{amount}` บาท',color=0x32CD32)
  66.  
  67.  
  68.  
  69. await interaction.send(embed=done,ephemeral=True)
  70.  
  71. if response.status_code == 400 or response.status_code == 404:
  72. await interaction.send(f"ซองอั่งเปานี้ถูกใช้ไปแล้ว หรือ ใส่ลิงค์ให้ถูก ", ephemeral = True)
  73.  
  74.  
  75.  
  76. class Main(nextcord.ui.View):
  77. def __init__(self):
  78. super().__init__(timeout=None)
  79. @nextcord.ui.button(label="กดเพื่อโดเนท", style=nextcord.ButtonStyle.red, emoji="📦",custom_id="Amg")
  80. async def Amg(self, button: nextcord.Button, interaction: nextcord.Interaction):
  81. await interaction.response.send_modal(Topup())
  82.  
  83.  
  84. @botsever.slash_command(guild_ids=[guildid],description="บอทโดเนท")
  85. async def กดโดเนท(interaction: nextcord.Interaction):
  86. embedbotsever = nextcord.Embed(title="BOT Sever",description=f"```กดปุ่มด้านล่างเพื่อโดเนท``` ",color=0x8800ff)
  87. embedbotsever.set_image("https://i...content-available-to-author-only...p.net/external/uQIjbuUXtMHAExWui7IWJUf3brj-hl1wL5ofsVxcVq4/https/i.pinimg.com/originals/54/ad/ed/54aded2832204ae26b6c57ddf7ad4854.gif?width=936&height=468")
  88.  
  89. await interaction.send(embed=embedbotsever,view=Main())
  90.  
  91.  
  92. botsever.run(TOKEN)
Success #stdin #stdout 0.03s 25836KB
stdin
Standard input is empty
stdout
from nextcord.ext import commands
import nextcord 
import os
from requests import post, Session , get
import datetime
import math
from re import match 


intents = nextcord.Intents.default()
intents.messages = True  # Enable message content intent
intents.message_content = True
intents.typing = False
client = commands.Bot(command_prefix = '/')

@client.event
async def on_ready():
    print(f'Successfully logged in as {client.user}')


@client.event
async def on_message(message):
    await client.process_commands(message)


@client.command()
async def hello(ctx):
    await ctx.channel.send(f'Hello! {ctx.author}')

TOKEN = "MTMxMjAzNTMzMzc5NzMxODY4Ng.G65O_7.lW0TJfUE-9I5HVi2N2xJTI0SGp00bN0fnKi--A" #token บอท
phone = "0984267600" 
guildid = 1335184514892169316 #ไอดีเซิฟดิส

botsever = commands.Bot(help_command=None)



@botsever.event
async def on_ready():
    print(f"BOT Online : {botsever.user}")
    await botsever.change_presence(activity=nextcord.Streaming(name="🟢",url="https://c...content-available-to-author-only...p.com/attachments/1148136573259489364/1154852437287510026/SILENT_GFX_2_ANIME_BANNER_6_1_1.png?ex=65152265&is=6513d0e5&hm=efb708788f7809f8d42cf0f75eba317ffc2581c0d3559ddb975741cc26bd2ad3&"))


class Topup(nextcord.ui.Modal):
    def __init__(self):
        super().__init__("คำสั่งโดเนท")  
        self.topup = nextcord.ui.TextInput(
            label="เติมเงินด้วยอังเปา (ห้ามมีตัว # อยู่ในลิงค์)",
            placeholder="กรอกลิงค์ซองอั่งเปา",
            required=True
        )
        self.add_item(self.topup)
    async def callback(self, interaction: nextcord.Interaction):
        
        if (not match (r"https:\/\/gift\.truemoney\.com\/campaign\/\?v=+[a-zA-Z0-9]{18}", self.topup.value)):
           await interaction.send(f"เหมือนคุณจะกวนตีนบอท", ephemeral = True) 
           return
        voucher_code = self.topup.value.split("?v=")[1]
        response = requests.post(f"https://g...content-available-to-author-only...y.com/campaign/vouchers/{voucher_code}/redeem",json={"mobile": phone, "voucher_hash": voucher_code},headers={"Accept": "application/json","User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36","Content-Type": "application/json","Origin": "https://g...content-available-to-author-only...y.com","Accept-Language": "en-US,en;q=0.9","Connection": "keep-alive",})
        redeemdata = response.json()
        if response.status_code == 200 and redeemdata["status"]["code"] == "SUCCESS" :
            amount = float(redeemdata["data"]["my_ticket"]["amount_baht"])
            
            
            done = nextcord.Embed(description=f'`✅ : โดเนทสำเร็จ` `|` จำนวน `{amount}` บาท',color=0x32CD32)
            
            
           
            await interaction.send(embed=done,ephemeral=True)
            
        if response.status_code ==  400 or response.status_code == 404:
            await interaction.send(f"ซองอั่งเปานี้ถูกใช้ไปแล้ว หรือ ใส่ลิงค์ให้ถูก ", ephemeral = True)
  


class Main(nextcord.ui.View):
    def __init__(self):
        super().__init__(timeout=None)
    @nextcord.ui.button(label="กดเพื่อโดเนท", style=nextcord.ButtonStyle.red, emoji="📦",custom_id="Amg")
    async def Amg(self, button: nextcord.Button, interaction: nextcord.Interaction):
        await interaction.response.send_modal(Topup())
    

@botsever.slash_command(guild_ids=[guildid],description="บอทโดเนท")
async def กดโดเนท(interaction: nextcord.Interaction):
    embedbotsever = nextcord.Embed(title="BOT Sever",description=f"```กดปุ่มด้านล่างเพื่อโดเนท``` ",color=0x8800ff)
    embedbotsever.set_image("https://i...content-available-to-author-only...p.net/external/uQIjbuUXtMHAExWui7IWJUf3brj-hl1wL5ofsVxcVq4/https/i.pinimg.com/originals/54/ad/ed/54aded2832204ae26b6c57ddf7ad4854.gif?width=936&height=468")

    await interaction.send(embed=embedbotsever,view=Main())


botsever.run(TOKEN)