Advertisement
Learning000001

Untitled

Nov 27th, 2024
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. public void GetGameData(Action<string> _callBack)
  2. {
  3. GameData _gameData = new GameData
  4. {
  5. Tasks = new List<TaskData>
  6. {
  7. new RedirectTask
  8. {
  9. Name = "MonsterKingdom",
  10. TaskType = TaskType.Redirect,
  11. RedirectUrl = "https://t.me/Monsterkingdom_bot/Monsterkingdom?startapp=eyJzaGFyZUlkIjo5MjE1ODczODl9",
  12. Description = "Play Monster Kingdom",
  13. Reward = 100,
  14. RewardType = RewardType.Balance,
  15. TriggerAmount = TaskTriggerAmount.Once
  16. },
  17. new RedirectTask
  18. {
  19. Name = "UXUYBot",
  20. TaskType = TaskType.Redirect,
  21. RedirectUrl = "https://t.me/UXUYbot/app?startapp=kclpWHuUmUnEjyNe",
  22. Description = "Earn Bitcoin rewards with UXUY Bot",
  23. Reward = 100,
  24. RewardType = RewardType.Balance,
  25. TriggerAmount = TaskTriggerAmount.Once
  26. },
  27. new RedirectTask
  28. {
  29. Name = "PumpadBot",
  30. TaskType = TaskType.Redirect,
  31. RedirectUrl = "https://t.me/Pumpad_Bot/Lucky?startapp=62939869940325235",
  32. Description = "Grab daily rewards with Pumpad Bot",
  33. Reward = 100,
  34. RewardType = RewardType.Balance,
  35. TriggerAmount = TaskTriggerAmount.Once
  36. },
  37. new RedirectTask
  38. {
  39. Name = "InfinityGround",
  40. TaskType = TaskType.Redirect,
  41. RedirectUrl = "https://t.me/InfinityGround_bot/Infinityg?startapp=srcTGqoom",
  42. Description = "Join Infinity Ground",
  43. Reward = 100,
  44. RewardType = RewardType.Balance,
  45. TriggerAmount = TaskTriggerAmount.Once
  46. },
  47. new RedirectTask
  48. {
  49. Name = "Boost",
  50. TaskType = TaskType.Redirect,
  51. RedirectUrl = "https://t.me/boostgg_bot/szn1?startapp=dfwop3v9",
  52. Description = "Join Boost",
  53. Reward = 100,
  54. RewardType = RewardType.Balance,
  55. TriggerAmount = TaskTriggerAmount.Once
  56. },
  57. new AdTask
  58. {
  59. Name = "Ads",
  60. TaskType = TaskType.WatchAdd,
  61. Description = "Watch an add",
  62. Reward = 100,
  63. RewardType = RewardType.Balance,
  64. TriggerAmount = TaskTriggerAmount.Repeatedly
  65. }
  66. }
  67. };
  68.  
  69. var _settings = new JsonSerializerSettings
  70. {
  71. TypeNameHandling = TypeNameHandling.Auto
  72. };
  73.  
  74. _callBack?.Invoke(JsonConvert.SerializeObject(_gameData,_settings));
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement