| 12345678910111213141516171819202122232425262728293031323334353637 |
- local RoleSystemLogic = require("roleSystem.RoleSystemLogic")
- local RoleRealmLogic = require("roleSystem.RoleRealmLogic")
- local RoleStorageBox = require("roleSystem.RoleStorageBox")
- function CG_ROLESYSTEM_QUERY(human, msg)
-
- end
- function CG_ROLESYSTEM_TOUCH(human, msg)
- RoleSystemLogic.touch(human, msg.id)
- end
- function CG_ROLESYSTEM_OPEN(human, msg)
- RoleSystemLogic.open(human, msg.id)
- end
- function CG_ROLE_REALM_QUERY(human, msg)
- RoleRealmLogic.query(human)
- end
- function CG_ROLE_REALM_UPGRADE(human, msg)
- RoleRealmLogic.realmUpgrade(human)
- end
- function CG_ROLESYSTEM_PRIZE_QUERY(human, msg)
- RoleSystemLogic.RoleSystem_QueryPrize(human)
- end
- function CG_ROLESYSTEM_PRIZE_GET(human, msg)
- RoleSystemLogic.RoleSystem_GetPrize(human)
- end
- function CG_ROLESTORAGEBOX_QUERY(human, msg)
- RoleStorageBox.Query(human)
- end
|