ModuleMount.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 ModuleMount : BotRunner.RunnerModule
  12. {
  13. public ModuleMount() {
  14. module_name = "坐骑";
  15. }
  16. public ModuleMount(BotRunner r) : base(r)
  17. {
  18. }
  19. protected internal override void OnGateBindPlayer(BindPlayerResponse e)
  20. {
  21. base.OnGateBindPlayer(e);
  22. runner.do_gm_open_func();
  23. }
  24. protected internal override void OnBattleActorReady(CommonAI.ZoneClient.ZoneLayer layer, CommonAI.ZoneClient.ZoneActor actor)
  25. {
  26. layer.AddTimeDelayMS(Config.CheckIntervalMS, (t) =>
  27. {
  28. if (Enable)
  29. {
  30. try_ride_mount();
  31. }
  32. });
  33. layer.AddTimePeriodicMS(Config.CheckIntervalMS, (t) =>
  34. {
  35. if (Enable)
  36. {
  37. try_get_mount_info();
  38. }
  39. });
  40. }
  41. private void try_get_mount_info()
  42. {
  43. log.Log("try_get_mount_info2 : ");
  44. client.GameSocket.mountHandler.getMountInfoRequest(
  45. (err, rsp) =>
  46. {
  47. log.Log("try_get_mount_info : " + rsp);
  48. });
  49. }
  50. private void try_ride_mount()
  51. {
  52. log.Log("try_ride_mount : ");
  53. client.GameSocket.mountHandler.ridingMountRequest(1,
  54. (err, rsp) =>
  55. {
  56. });
  57. }
  58. [Desc("坐骑配置")]
  59. [Expandable]
  60. public class Config : ConfigBase
  61. {
  62. [Desc("坐骑检测间隔")]
  63. public static int CheckIntervalMS = 5000;
  64. public override string ToString()
  65. {
  66. return "坐骑配置";
  67. }
  68. public override void popG2DPropertyDialog()
  69. {
  70. CommonFroms.G2D.G2DPropertyDialog<ModuleMount.Config>.Show("修改配置", this);
  71. }
  72. }
  73. }
  74. }