diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index 4e86629..4866b46 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -624,6 +624,14 @@ event({item_unequip, ItemID, TargetGID, TargetLID, A, B}) -> send(<< 16#01050300:32, 0:64, GID:32/little-unsigned-integer, 0:64, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, TargetGID:32/little-unsigned-integer, TargetLID:32/little-unsigned-integer, ItemID, 2, Category, A, B:32/little-unsigned-integer >>); +%% @todo Forward the mission start to other players of the same party, whatever their location is. +event({mission_start, QuestID}) -> + log("mission start ~b", [QuestID]), + send_170c(), + send_1020(), + send_1015(QuestID), + send_0c02(); + %% @todo Also happening a 1506 -> 1507? Only on first selection from menu. %% @todo Also at the end send a 101a (NPC:16, PartyPos:16, ffffffff). Not sure about PartyPos. event({npc_invite, NPCid}) -> @@ -785,15 +793,6 @@ handle(16#0a09, Data) -> handle(16#0a10, << ItemID:32/unsigned-integer >>) -> send_0a11(ItemID, "dammy"); -%% @doc Start mission handler. -%% @todo Forward the mission start to other players of the same party, whatever their location is. -handle(16#0c01, << QuestID:32/little-unsigned-integer >>) -> - log("start mission ~b", [QuestID]), - send_170c(), - send_1020(), - send_1015(QuestID), - send_0c02(); - %% @doc Counter quests files request handler? Send huge number of quest files. %% @todo Handle correctly. handle(16#0c05, _) -> diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index 8a7fc79..3fc3fc1 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -223,6 +223,22 @@ parse(Size, 16#0b05, _Channel, _Data) -> ?ASSERT_EQ(Size, 8), ignore; +parse(Size, 16#0c01, Channel, Data) -> + << _LID:16/little, VarA:16/little, VarB:32/little, VarC:32/little, VarD:32/little, VarE:32/little, + VarF:32/little, VarG:32/little, VarH:32/little, VarI:32/little, QuestID:32/little >> = Data, + ?ASSERT_EQ(Size, 48), + ?ASSERT_EQ(Channel, 2), + ?ASSERT_EQ(VarA, 0), + ?ASSERT_EQ(VarB, 0), + ?ASSERT_EQ(VarC, 0), + ?ASSERT_EQ(VarD, 0), + ?ASSERT_EQ(VarE, 0), + ?ASSERT_EQ(VarF, 0), + ?ASSERT_EQ(VarG, 0), + ?ASSERT_EQ(VarH, 0), + ?ASSERT_EQ(VarI, 0), + {mission_start, QuestID}; + parse(_Size, Command, Channel, Data) -> %% @todo log unknown command? %~ ignore.