ClubRoomAtmosTaskConfig.lua 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. local root = {
  2. {
  3. groupId = 200,
  4. taskType = 'httpUserLoginTask',
  5. exeInterval = 1,
  6. times = 1
  7. },
  8. {
  9. groupId = 200,
  10. taskType = 'wsLoginGameTask',
  11. exeInterval = 300,
  12. times = -1,
  13. needDoneTask = {"httpUserLoginTask"}
  14. },
  15. {
  16. groupId = 200,
  17. taskType = 'clubEnterRoomBattleTask',
  18. exeInterval = 20,
  19. times = -1,
  20. needDoneTask = {"wsLoginGameTask"}
  21. },
  22. {
  23. groupId = 200,
  24. taskType = 'gmAddItemTask',
  25. exeInterval = 10,
  26. times = -1,
  27. needDoneTask = {"wsLoginGameTask"}
  28. },
  29. {
  30. groupId = 200,
  31. taskType = 'changeNickNameTask',
  32. exeInterval = 0,
  33. times = 0,
  34. needDoneTask = {"wsLoginGameTask"}
  35. },
  36. {
  37. groupId = 200,
  38. taskType = 'clubTalkTask',
  39. exeInterval = 0,
  40. times = 0,
  41. needDoneTask = {"wsLoginGameTask"}
  42. },
  43. {
  44. groupId = 200,
  45. taskType = 'clubRandomRoomCardsTask',
  46. exeInterval = 0,
  47. times = 0,
  48. needDoneTask = {"wsLoginGameTask"}
  49. },
  50. {
  51. groupId = 210,
  52. taskType = 'httpUserLoginTask',
  53. exeInterval = 1,
  54. times = 1
  55. },
  56. {
  57. groupId = 210,
  58. taskType = 'wsLoginGameTask',
  59. exeInterval = 300,
  60. times = -1,
  61. needDoneTask = {"httpUserLoginTask"}
  62. },
  63. {
  64. groupId = 210,
  65. taskType = 'clubCreateRoomBattleTask',
  66. exeInterval = 120,
  67. times = -1,
  68. needDoneTask = {"wsLoginGameTask"}
  69. },
  70. {
  71. groupId = 210,
  72. taskType = 'gmAddItemTask',
  73. exeInterval = 10,
  74. times = -1,
  75. needDoneTask = {"wsLoginGameTask"}
  76. },
  77. {
  78. groupId = 210,
  79. taskType = 'changeNickNameTask',
  80. exeInterval = 0,
  81. times = 0,
  82. needDoneTask = {"wsLoginGameTask"}
  83. },
  84. {
  85. groupId = 210,
  86. taskType = 'clubTalkTask',
  87. exeInterval = 0,
  88. times = 0,
  89. needDoneTask = {"wsLoginGameTask"}
  90. },
  91. {
  92. groupId = 210,
  93. taskType = 'clubRandomRoomCardsTask',
  94. exeInterval = 0,
  95. times = 0,
  96. needDoneTask = {"wsLoginGameTask"}
  97. }
  98. }
  99. return root