FriendsWarn.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 FriendsWarn : BotRunner.RunnerModule
  12. {
  13. public FriendsWarn() {
  14. module_name = "好友";
  15. }
  16. public FriendsWarn(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. friendGetAllFriendsRequest();
  36. }
  37. });
  38. }
  39. private void friendGetAllFriendsRequest()
  40. {
  41. client.GameSocket.friendHandler.friendGetAllFriendsRequest("", 0,
  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<FriendsWarn.Config>.Show("修改配置", this);
  58. }
  59. }
  60. }
  61. }