psu_proto: Move send_101a to psu_proto without reviewing it.
This commit is contained in:
parent
0b02718faa
commit
6dc9fb52dc
@ -510,7 +510,7 @@ event({npc_invite, NPCid}, Client=#client{gid=GID}) ->
|
||||
SentNPCCharacter = Character#characters{gid=NPCid, npcid=NPCid},
|
||||
SentNPCUser = NPCUser#users{character=SentNPCCharacter},
|
||||
psu_game:send_1004(npc_invite, SentNPCUser, PartyPos),
|
||||
psu_game:send_101a(NPCid, PartyPos);
|
||||
psu_proto:send_101a(NPCid, PartyPos, Client);
|
||||
|
||||
%% @todo Should be 0115(money) 010a03(confirm sale).
|
||||
event({npc_shop_buy, ShopItemIndex, QuantityOrColor}, Client=#client{gid=GID}) ->
|
||||
|
@ -337,10 +337,6 @@ send_1016(PartyPos) ->
|
||||
GID = get(gid),
|
||||
send(<< 16#10160300:32, 16#ffff0000:32, 0:128, 16#00011300:32, GID:32/little, 0:64, PartyPos:32/little >>).
|
||||
|
||||
%% @todo No idea.
|
||||
send_101a(NPCid, PartyPos) ->
|
||||
send(<< (header(16#101a))/binary, NPCid:16/little, PartyPos:16/little, 16#ffffffff:32 >>).
|
||||
|
||||
%% @todo Boss related command.
|
||||
send_110e(Data) ->
|
||||
send(<< (header(16#110e))/binary, Data/binary, 0:32, 5:16/little, 12:16/little, 0:32, 260:32/little >>).
|
||||
|
@ -1549,6 +1549,11 @@ send_1015(QuestID, #client{socket=Socket, gid=DestGID}) ->
|
||||
Size = byte_size(QuestData),
|
||||
packet_send(Socket, << 16#10150300:32, 0:160, 16#00011300:32, DestGID:32/little, 0:64, QuestID:32/little, 16#01010000:32, 0:32, Size:32/little, QuestData/binary >>).
|
||||
|
||||
%% @todo No idea.
|
||||
%% @todo This packet hasn't been reviewed at all yet.
|
||||
send_101a(NPCid, PartyPos, #client{socket=Socket, gid=DestGID}) ->
|
||||
packet_send(Socket, << 16#101a0300:32, 0:160, 16#00011300:32, DestGID:32/little, 0:64, NPCid:16/little, PartyPos:16/little, 16#ffffffff:32 >>).
|
||||
|
||||
%% @doc Mission start related.
|
||||
send_1020(#client{socket=Socket, gid=DestGID}) ->
|
||||
packet_send(Socket, << 16#10200300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64 >>).
|
||||
|
Loading…
Reference in New Issue
Block a user