KAILASHSINGH9 / Davaldog

0 stars 0 forks source link

Host #1

Closed KAILASHSINGH9 closed 1 week ago

KAILASHSINGH9 commented 1 week ago

import telebot import random

API_TOKEN = '8149744153:AAG1Yn5h03IJh0DDbs48y4hUY4R1xuOVyTw' bot = telebot.TeleBot(API_TOKEN)

users = {} # यूज़र डेटा स्टोर करने के लिए

@bot.message_handler(commands=['start']) def start_game(message): bot.send_message(message.chat.id, "Davaldogs गेम में आपका स्वागत है!") users[message.chat.id] = {'score': 0} # नए यूज़र के लिए स्कोर सेट करें

@bot.message_handler(commands=['score']) def show_score(message): score = users.get(message.chat.id, {}).get('score', 0) bot.send_message(message.chat.id, f"आपका स्कोर: {score}")

@bot.message_handler(commands=['tap']) def tap_game(message):

यहां टैप गेम का लॉजिक जोड़ें

coin = random.randint(1, 10)  # यादृच्छिक सिक्के जनरेट करें
users[message.chat.id]['score'] += coin  # यूज़र के स्कोर में जोड़ें
bot.send_message(message.chat.id, f"आपने {coin} सिक्के कमाए!")

bot.polling()

KAILASHSINGH9 commented 1 week ago
  1. संक्षिप्त और स्पष्ट विवरण:

एक संक्षिप्त लेकिन स्पष्ट विवरण दें कि आपने क्या बदलाव किए हैं।

जैसे:

"Added davaldogs.py file"

"Initial commit for Davaldogs bot"

"Uploaded bot code for Davaldogs game"

  1. बदलाव का उद्देश्य:

यह बताएं कि आप यह परिवर्तन क्यों कर रहे हैं। जैसे:

"Created basic structure for the Telegram bot"

"Added game functionality to the bot"

  1. संस्करण (versioning):

यदि आप एक नया संस्करण बना रहे हैं, तो आप इसे शामिल कर सकते हैं:

"Version 1.0 initial release"

  1. सुधार या बग फिक्स:

यदि आपने किसी बग को ठीक किया है, तो उसे भी लिखें:

"Fixed issue with coin collection"

"Improved game logic for better user experience"

उदाहरण टिप्पणियाँ

"Added initial bot code for Davaldogs game."

"Updated bot to include daily tasks feature."

"Fixed bugs and optimized performance

KAILASHSINGH9 commented 1 week ago

I want to upload this game on Telegram. Please provide the API token

8149744153:AAG1Yn5h03IJh0DDbs48y4hUY4R1xuOVyTw

and its URL

KAILASHSINGH9 commented 1 week ago

Canect game

8149744153:AAG1Yn5h03IJh0DDbs48y4hUY4R1xuOVyTw