源战役
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

26 lignes
929 B

il y a 1 mois
  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. ).