psu_proto: Review and move send_1020 to psu_proto.
This commit is contained in:
parent
ca5f73bad1
commit
1a6b9549a3
@ -440,9 +440,9 @@ event(mission_abort, State=#state{gid=GID}) ->
|
||||
end;
|
||||
|
||||
%% @todo Forward the mission start to other players of the same party, whatever their location is.
|
||||
event({mission_start, QuestID}, _State) ->
|
||||
event({mission_start, QuestID}, State) ->
|
||||
log("mission start ~b", [QuestID]),
|
||||
psu_game:send_1020(),
|
||||
psu_proto:send_1020(State),
|
||||
psu_game:send_1015(QuestID),
|
||||
psu_game:send_0c02();
|
||||
|
||||
|
@ -635,10 +635,6 @@ send_1016(PartyPos) ->
|
||||
send_101a(NPCid, PartyPos) ->
|
||||
send(<< (header(16#101a))/binary, NPCid:16/little-unsigned-integer, PartyPos:16/little-unsigned-integer, 16#ffffffff:32 >>).
|
||||
|
||||
%% @todo Totally unknown.
|
||||
send_1020() ->
|
||||
send(header(16#1020)).
|
||||
|
||||
%% @todo Boss related command.
|
||||
send_110e(Data) ->
|
||||
send(<< (header(16#110e))/binary, Data/binary, 0:32, 5:16/little-unsigned-integer, 12:16/little-unsigned-integer, 0:32, 260:32/little-unsigned-integer >>).
|
||||
|
@ -1320,6 +1320,10 @@ send_1006(EventID, State) ->
|
||||
send_1006(EventID, PartyPos, #state{socket=Socket, gid=DestGID}) ->
|
||||
packet_send(Socket, << 16#10060300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, EventID:8, PartyPos:8, 0:16 >>).
|
||||
|
||||
%% @doc Mission start related.
|
||||
send_1020(#state{socket=Socket, gid=DestGID}) ->
|
||||
packet_send(Socket, << 16#10200300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64 >>).
|
||||
|
||||
%% @doc Update HP in the party members information on the left.
|
||||
%% @todo Handle PartyPos. Probably only pass HP later.
|
||||
send_1022(#egs_user_model{character=#characters{currenthp=HP}}, #state{socket=Socket, gid=DestGID}) ->
|
||||
|
Loading…
Reference in New Issue
Block a user