| 1234567891011121314151617181920212223242526272829303132333435363738 |
- local RoleSystemLogic = require("roleSystem.RoleSystemLogic")
- local RoleRealmLogic = require("roleSystem.RoleRealmLogic")
- local RoleStorageBox = require("roleSystem.RoleStorageBox")
- local RoleOpenPrize = require("roleSystem.RoleOpenPrize")
- 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)
- RoleOpenPrize.RoleSystem_QueryPrize(human)
- end
- function CG_ROLESYSTEM_PRIZE_GET(human, msg)
- RoleOpenPrize.RoleSystem_GetPrize(human)
- end
- function CG_ROLESTORAGEBOX_QUERY(human, msg)
- RoleStorageBox.Query(human)
- end
|