Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //MCCScript 1.0
- //dll QIWIDonation.dll
- //using QIWIDonation;
- MCC.LoadBot(new QIWI_DonationBot());
- //MCCScript Extensions
- public class QIWI_DonationBot : ChatBot
- {
- public override void Initialize()
- {
- Donation donation = new Donation("token", OnDonate);
- LogToConsole("Бот запущен");
- }
- private void OnDonate(string nickname, double ammount, string currency, string message)
- {
- }
- public override void Update()
- {
- }
- public override void AfterGameJoined()
- {
- }
- public override void GetText(string text, string json)
- {
- string text1 = GetVerbatim(text);
- }
- }
RAW Paste Data