ModuleInventory.cs 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. using CommonAI.ZoneClient;
  2. using pomelo.area;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using XmdsBattleClientBot.Bot;
  9. using pomelo.connector;
  10. using CommonLang.Property;
  11. namespace XmdsBotTest.Runner
  12. {
  13. public class ModuleInventory : BotRunner.RunnerModule
  14. {
  15. public ModuleInventory() {
  16. module_name = "道具";
  17. }
  18. public ModuleInventory(BotRunner r) : base(r)
  19. {
  20. client.GameSocket.listen<BagNewItemPush>(on_got_new_item);
  21. client.GameSocket.listen<BagNewEquipPush>(on_got_new_equip);
  22. }
  23. protected internal override void OnGateBindPlayer(BindPlayerResponse e)
  24. {
  25. base.OnGateBindPlayer(e);
  26. runner.do_gm_add_diamond(99999999);
  27. runner.do_gm_add_gold(99999999);
  28. }
  29. protected internal override void OnBattleActorReady(CommonAI.ZoneClient.ZoneLayer layer, CommonAI.ZoneClient.ZoneActor actor)
  30. {
  31. if (Enable)
  32. {
  33. if (bot.CurrentInventories != null)
  34. {
  35. bot.CurrentInventories.Bag.OpenStorage(5,
  36. (e, r) => { runner.log_response("open Bag done : ", e, r); });
  37. bot.CurrentInventories.Warehouse.OpenStorage(5,
  38. (e, r) => { runner.log_response("open Warehouse done : ", e, r); });
  39. }
  40. }
  41. layer.AddTimePeriodicMS(Config.CheckIntervalMS, (t) =>
  42. {
  43. if (Enable)
  44. {
  45. on_do_1s(layer);
  46. }
  47. });
  48. }
  49. private void on_do_1s(ZoneLayer layer)
  50. {
  51. runner.do_start_pick_any_item();
  52. }
  53. private void on_got_new_item(BagNewItemPush e)
  54. {
  55. foreach (var i in e.s2c_data)
  56. {
  57. log.Info("got new item : " + i.name);
  58. }
  59. }
  60. private void on_got_new_equip(BagNewEquipPush e)
  61. {
  62. foreach (var i in e.s2c_data)
  63. {
  64. log.Info("got new equip : " + i);
  65. bot.gs_EquipItemByID(i, (err, rsp) =>
  66. {
  67. runner.log_response("equip new item ", err, rsp);
  68. });
  69. }
  70. }
  71. [Desc("道具配置")]
  72. [Expandable]
  73. public class Config : ConfigBase
  74. {
  75. [Desc("检取间隔")]
  76. public static int CheckIntervalMS = 1000;
  77. public override string ToString()
  78. {
  79. return "道具配置";
  80. }
  81. public override void popG2DPropertyDialog()
  82. {
  83. CommonFroms.G2D.G2DPropertyDialog<ModuleInventory.Config>.Show("修改配置", this);
  84. }
  85. }
  86. }
  87. }