psu_proto: Move send_100f to psu_proto without reviewing it.
This commit is contained in:
parent
64d8bf7c25
commit
333e898bb4
@ -484,7 +484,7 @@ event({npc_force_invite, NPCid}, Client=#client{gid=GID}) ->
|
||||
psu_game:send_0a04(SentNPCUser#users.gid),
|
||||
psu_proto:send_022c(0, 16#12, Client),
|
||||
psu_game:send_1004(npc_mission, SentNPCUser, PartyPos),
|
||||
psu_game:send_100f((SentNPCUser#users.character)#characters.npcid, PartyPos),
|
||||
psu_proto:send_100f((SentNPCUser#users.character)#characters.npcid, PartyPos, Client),
|
||||
psu_game:send_1601(PartyPos);
|
||||
|
||||
%% @todo Also at the end send a 101a (NPC:16, PartyPos:16, ffffffff). Not sure about PartyPos.
|
||||
|
@ -121,7 +121,7 @@ npc_load(Leader, [{PartyPos, NPCGID}|NPCList], Client) ->
|
||||
psu_proto:send_0215(0, Client),
|
||||
send_0a04(NPCUser#users.gid),
|
||||
send_1004(npc_mission, NPCUser, PartyPos),
|
||||
send_100f((NPCUser#users.character)#characters.npcid, PartyPos),
|
||||
psu_proto:send_100f((NPCUser#users.character)#characters.npcid, PartyPos, Client),
|
||||
send_1601(PartyPos),
|
||||
send_1016(PartyPos),
|
||||
npc_load(Leader, NPCList, Client).
|
||||
@ -332,10 +332,6 @@ send_1004(Type, User, PartyPos) ->
|
||||
16#01000000:32, 16#01000000:32, %% @todo first is current hp, second is max hp
|
||||
0:608 >>).
|
||||
|
||||
%% @todo No idea. Also the 2 PartyPos in the built packet more often than not match, but sometimes don't? That's probably because one is PartyPos and the other is LID or something.
|
||||
send_100f(NPCid, PartyPos) ->
|
||||
send(<< (header(16#100f))/binary, NPCid:16/little, 1, PartyPos:8, PartyPos:32/little >>).
|
||||
|
||||
%% @doc Send the mission's quest file when starting a new mission.
|
||||
%% @todo Handle correctly. 0:32 is actually a missing value. Value before that is unknown too.
|
||||
send_1015(QuestID) ->
|
||||
|
@ -1536,6 +1536,11 @@ send_100e({QuestID, ZoneID, MapID}, EntryID, AreaName, #client{socket=Socket, gi
|
||||
1, PartyPos, ZoneID:16/little, MapID:16/little, EntryID:16/little, QuestID:32/little,
|
||||
UCS2Name/binary, 0:Padding, 0:32, 16#ffffffff:32, 0:32 >>).
|
||||
|
||||
%% @todo No idea. Also the 2 PartyPos in the built packet more often than not match, but sometimes don't? That's probably because one is PartyPos and the other is LID or something.
|
||||
%% @todo This packet hasn't been reviewed at all yet.
|
||||
send_100f(NPCid, PartyPos, #client{socket=Socket, gid=DestGID}) ->
|
||||
packet_send(Socket, << 16#100f0300:32, 0:160, 16#00011300:32, DestGID:32/little, 0:64, NPCid:16/little, 1, PartyPos:8, PartyPos:32/little >>).
|
||||
|
||||
%% @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