Загрузка...

Why are the stars not written off?

Thread in C# created by YuppiNow May 23, 2025. 193 views

  1. YuppiNow
    YuppiNow Topic starter May 23, 2025 ГОЛЫЕ СИСЬКИ АЛЬТУХ - https://lolz.live/threads/8513700/ 859 Jan 25, 2022
    Хочу написать бота с приемом оплаты проблемы пошли уже с самого начала
    CSHARP
        int amount = 0;

    try
    {
    amount = int.Parse(e.Message.Text);
    }
    catch (Exception ex)
    {
    await bot.SendTextMessageAsync(e.Message.Chat.Id, "Введите число");
    Console.WriteLine(ex.Message);
    return;
    }

    await bot.SendInvoiceAsync(
    chatId: e.Message.Chat.Id,
    title: "PayStars",
    description: "payStars to X parser bot",
    payload: Guid.NewGuid().ToString(),
    providerToken: "STARS",
    currency: "XTR",
    prices: new[] { new LabeledPrice($"Pay {amount}", amount) },
    startParameter: "start_parameter"
    );
    Создается сообщение но я не могу его оплатить... Почему так заранее спасибо
     
  2. matBast0s
    matBast0s May 23, 2025 Слив guest lolz.live/threads/8809581 4278 Sep 10, 2023
     
    1. View previous comments (2)
    2. matBast0s
    3. YuppiNow Topic starter
    4. matBast0s
Loading...
Top