diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index de31edb..66ec99e 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -596,6 +596,10 @@ event({counter_quest_options_request, CounterID}) -> [{quests, _}, {bg, _}, {options, Options}] = proplists:get_value(CounterID, ?COUNTERS), send_0c10(Options); +%% @todo Send something other than just "dammy". +event({item_description_request, ItemID}) -> + send_0a11(ItemID, "dammy"); + %% @todo A and B are unknown. %% Melee uses a format similar to: AAAA--BBCCCC----DDDDDDDDEE----FF with %% AAAA the attack sound effect, BB the range, CCCC and DDDDDDDD unknown but related to angular range or similar, EE number of targets and FF the model. @@ -866,11 +870,6 @@ handle(16#0a09, Data) -> GID = get(gid), send(<< 16#0a090300:32, 0:32, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, 16#00003300:32, 0:32 >>); -%% @doc Item description request. -%% @todo Send something other than just "dammy". -handle(16#0a10, << ItemID:32/unsigned-integer >>) -> - send_0a11(ItemID, "dammy"); - %% @doc Set flag handler. Associate a new flag with the character. %% Just reply with a success value for now. %% @todo God save the flags. diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index 79c5c80..a9df866 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -261,6 +261,22 @@ parse(Size, 16#0813, Channel, Data) -> ?ASSERT_EQ(VarJ, 16#ffffffff), {npc_invite, NPCid}; +parse(Size, 16#0a10, 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, ItemID:32 >> = 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), + {item_description_request, ItemID}; + parse(Size, 16#0b05, _Channel, _Data) -> ?ASSERT_EQ(Size, 8), ignore;