ModuleSkill.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 ModuleSkill : BotRunner.RunnerModule
  12. {
  13. public ModuleSkill() {
  14. module_name = "技能";
  15. }
  16. public ModuleSkill(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. try_get_skill_list();
  36. }
  37. });
  38. }
  39. private void try_get_skill_list()
  40. {
  41. client.GameSocket.skillHandler.getAllSkillRequest(
  42. (err, rsp) =>
  43. { });
  44. }
  45. [Desc("技能配置")]
  46. [Expandable]
  47. public class Config : ConfigBase
  48. {
  49. [Desc("技能检测间隔")]
  50. public static int CheckIntervalMS = 5000;
  51. public override string ToString()
  52. {
  53. return "技能配置";
  54. }
  55. public override void popG2DPropertyDialog()
  56. {
  57. CommonFroms.G2D.G2DPropertyDialog<ModuleSkill.Config>.Show("修改配置", this);
  58. }
  59. }
  60. }
  61. }