源战役
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

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