Handler.lua 632 B

12345678910111213141516171819202122
  1. local LostTempleLogic = require("lostTemple.lostTempleLogic")
  2. local LostTempleCombatLogic = require("lostTemple.lostTempleCombatLogic")
  3. function CG_LOST_TEMPLE_QUERY(human, msg)
  4. LostTempleLogic.query(human)
  5. end
  6. function CG_LOST_TEMPLE_PUT(human, msg)
  7. LostTempleLogic.put(human, msg.op, msg.x, msg.y, msg.arg)
  8. end
  9. function CG_LOST_TEMPLE_SUMMON_LIST(human, msg)
  10. LostTempleLogic.sendSummonHeroList(human)
  11. end
  12. function CG_LOST_TEMPLE_BUFF_LIST(human, msg)
  13. LostTempleLogic.sendSummonTreeList(human)
  14. end
  15. function CG_LOGT_TEMPLE_RANDOM_BOX(human, msg)
  16. LostTempleLogic.sendRandomBox(human)
  17. end