diff --git a/src/egs_game.erl b/src/egs_game.erl index 0b10737..41ef87f 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -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}) -> diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index a2e1322..b26cd54 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -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 >>). diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index efd2d53..5c7cbe3 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -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 >>).