BuyIntergalItemProto.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using pomelo.connector;
  7. using CommonLang.Property;
  8. using pomelo.area;
  9. namespace XmdsBotTest.Runner
  10. {
  11. public class BuyIntergalItemProto : BotRunner.RunnerModule
  12. {
  13. public BuyIntergalItemProto() {
  14. module_name = "积分商店";
  15. }
  16. public BuyIntergalItemProto(BotRunner r) : base(r)
  17. {
  18. }
  19. protected internal override void OnGateBindPlayer(BindPlayerResponse e)
  20. {
  21. base.OnGateBindPlayer(e);
  22. }
  23. protected internal override void OnBattleActorReady(CommonAI.ZoneClient.ZoneLayer layer, CommonAI.ZoneClient.ZoneActor actor)
  24. {
  25. layer.AddTimeDelayMS(Config.CheckIntervalMS, (t) =>
  26. {
  27. if (Enable)
  28. {
  29. }
  30. });
  31. layer.AddTimePeriodicMS(Config.CheckIntervalMS, (t) =>
  32. {
  33. if (Enable)
  34. {
  35. buyIntergalItemRequest();
  36. }
  37. });
  38. }
  39. private void buyIntergalItemRequest()
  40. {
  41. client.GameSocket.intergalMallHandler.buyIntergalItemRequest(Config.shopType, Config.itemId,Config.buyCount,
  42. (err, rsp) =>
  43. {
  44. if(err != null && !err.Equals(""))
  45. Console.WriteLine("buyIntergalItemRequest:", err);
  46. });
  47. }
  48. [Desc("积分商店配置")]
  49. [Expandable]
  50. public class Config : ConfigBase
  51. {
  52. [Desc("积分商店检测间隔")]
  53. public static int CheckIntervalMS = 5000;
  54. [Desc("积分商店购买数量")]
  55. public static int shopType = 1; // 商店类型 1:杂货商店 2:积分商店 3:仙缘商店 4:竞技商店 5:仙盟商店
  56. public static int itemId = 1; // 购买的物品id
  57. public static int buyCount = 1; // 购买的数量
  58. public override string ToString()
  59. {
  60. return "积分商店配置";
  61. }
  62. public override void popG2DPropertyDialog()
  63. {
  64. CommonFroms.G2D.G2DPropertyDialog<BuyIntergalItemProto.Config>.Show("修改配置", this);
  65. }
  66. }
  67. }
  68. }