psu_proto: Move send_1015 to psu_proto without reviewing it.

This commit is contained in:
Loïc Hoguin 2011-02-26 18:25:04 +01:00
parent 333e898bb4
commit 0b02718faa
3 changed files with 9 additions and 8 deletions

View File

@ -452,7 +452,7 @@ event(mission_abort, Client=#client{gid=GID}) ->
event({mission_start, QuestID}, Client) ->
log("mission start ~b", [QuestID]),
psu_proto:send_1020(Client),
psu_game:send_1015(QuestID),
psu_proto:send_1015(QuestID, Client),
psu_proto:send_0c02(Client);
%% @doc Force the invite of an NPC character while inside a mission. Mostly used by story missions.

View File

@ -332,13 +332,6 @@ send_1004(Type, User, PartyPos) ->
16#01000000:32, 16#01000000:32, %% @todo first is current hp, second is max hp
0:608 >>).
%% @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) ->
QuestData = egs_quests_db:quest_nbl(QuestID),
Size = byte_size(QuestData),
send(<< (header(16#1015))/binary, QuestID:32/little, 16#01010000:32, 0:32, Size:32/little, QuestData/binary >>).
%% @todo No idea.
send_1016(PartyPos) ->
GID = get(gid),

View File

@ -1541,6 +1541,14 @@ send_100e({QuestID, ZoneID, MapID}, EntryID, AreaName, #client{socket=Socket, gi
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 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.
%% @todo This packet hasn't been reviewed at all yet.
send_1015(QuestID, #client{socket=Socket, gid=DestGID}) ->
QuestData = egs_quests_db:quest_nbl(QuestID),
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 >>).
%% @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 >>).