源战役
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
929 B

  1. %%%------------------------------------------------
  2. %%% File : unite.hrl
  3. %%% Author : xyao
  4. %%% Created : 2011-06-13
  5. %%% Description: 公共线record
  6. %%%------------------------------------------------
  7. %% 聊天信息
  8. -record(ets_unite, {
  9. id = 0, %% 玩家id
  10. server_id = 0, %% 服id
  11. figure = undefined, %% 形象
  12. online = 1, %% 是否真实在线
  13. talk_lim = 0, %% 禁言
  14. talk_lim_time = 0, %% 禁言截止时间
  15. scene = 0, %% 场景
  16. scene_pool_id = 0, %% 场景PoolId
  17. copy_id = 0, %% 房间标示
  18. team_id = 0, %% 队伍
  19. combat_power = 0, %% 战力值,同步到历史最高战力,相当于highest_combat_power
  20. group, %% 分组信息([DungeonId, Group])
  21. sid = undefined, %% 广播进程
  22. last_login_time = 0,
  23. pid = undefined %% 游戏线进程id
  24. }
  25. ).