Handler.lua 454 B

12345678910111213
  1. local RacialTrialLogic = require("racialTrial.RacialTrialLogic")
  2. local Log = require("common.Log")
  3. function CG_RACIALTRIAL_ENTRANCE_QUERY(human,msg)
  4. Log.write(Log.LOGID_OSS_RACAIL, "CG_RACIALTRIAL_ENTRANCE_QUERY")
  5. RacialTrialLogic.entranceQuery(human, msg)
  6. end
  7. function CG_RACIALTRIAL_LEVEL_QUERY(human,msg)
  8. Log.write(Log.LOGID_OSS_RACAIL, string.format("CG_RACIALTRIAL_LEVEL_QUERY: %s", msg.camp))
  9. RacialTrialLogic.stageQuery(human, msg.camp)
  10. end