AutionProto.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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 AutionProto : BotRunner.RunnerModule
  12. {
  13. private pomelo.player.Player player;
  14. public AutionProto() {
  15. module_name = "寄卖行寄卖物品";
  16. }
  17. public AutionProto(BotRunner r) : base(r)
  18. {
  19. }
  20. protected internal override void OnGateBindPlayer(BindPlayerResponse e)
  21. {
  22. base.OnGateBindPlayer(e);
  23. runner.do_gm_add_exp(999999999);
  24. runner.do_gm_add_gold(999);
  25. runner.do_gm_add_item("hp1",99);
  26. player = e.s2c_player;
  27. }
  28. protected internal override void OnBattleActorReady(CommonAI.ZoneClient.ZoneLayer layer, CommonAI.ZoneClient.ZoneActor actor)
  29. {
  30. layer.AddTimeDelayMS(Config.CheckIntervalMS, (t) =>
  31. {
  32. if (Enable)
  33. {
  34. }
  35. });
  36. layer.AddTimePeriodicMS(Config.CheckIntervalMS, (t) =>
  37. {
  38. if (Enable && player.level >= 10)//10级暂时写死
  39. {
  40. buyIntergalItemRequest();
  41. }
  42. });
  43. }
  44. private void buyIntergalItemRequest()
  45. {
  46. List<pomelo.item.Grid> bagGrids = player.store.bag.bagGrids;
  47. foreach (var grid in bagGrids)
  48. {
  49. if (null != grid && 0 != grid.item.itemType)
  50. {
  51. client.GameSocket.consignmentLineHandler.addConsignmentRequest(grid.gridIndex, Config.count, Config.price,0,0, "c2s_id",
  52. (err, rsp) =>
  53. {
  54. if (err != null)
  55. {
  56. Console.WriteLine("buyIntergalItemRequest: err:{0} grid.item:{1}", err, grid.item.code);
  57. }
  58. else {
  59. Console.WriteLine("sucess grid.gridIndex:{0} Config.count:{1} ", grid.gridIndex, Config.count);
  60. }
  61. });
  62. }
  63. }
  64. }
  65. [Desc("寄卖行寄卖物品配置")]
  66. [Expandable]
  67. public class Config : ConfigBase
  68. {
  69. [Desc("寄卖行寄卖物品检测间隔")]
  70. public static int CheckIntervalMS = 5000;
  71. [Desc("寄卖行寄卖物品购买数量")]
  72. public static int price = 2;
  73. public static int count = 1;
  74. public override string ToString()
  75. {
  76. return "寄卖行寄卖物品配置";
  77. }
  78. public override void popG2DPropertyDialog()
  79. {
  80. CommonFroms.G2D.G2DPropertyDialog<AutionProto.Config>.Show("修改配置", this);
  81. }
  82. }
  83. }
  84. }