diff --git a/p/packet1005.bin b/p/packet1005.bin deleted file mode 100644 index 55363b9..0000000 Binary files a/p/packet1005.bin and /dev/null differ diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index a1664fe..b3763db 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -32,7 +32,7 @@ char_load(User, State) -> % 0246 send_0a0a((User#egs_user_model.character)#characters.inventory), psu_proto:send_1006(5, 0, State), %% @todo The 0 here is PartyPos, save it in User. - send_1005((User#egs_user_model.character)#characters.name), + psu_proto:send_1005(User#egs_user_model.character, State), psu_proto:send_1006(12, State), psu_proto:send_0210(State), psu_proto:send_0222(User#egs_user_model.uni, State), @@ -487,13 +487,6 @@ send_1004(Type, User, PartyPos) -> 16#01000000:32, 16#01000000:32, %% @todo first is current hp, second is max hp 0:608 >>). -%% @todo Figure out what the packet is. -send_1005(Name) -> - {ok, File} = file:read_file("p/packet1005.bin"), - << _:352, Before:160/bits, _:608, After/bits >> = File, - GID = get(gid), - send(<< 16#10050300:32, 16#ffff:16, 0:144, 16#00011300:32, GID:32/little, 0:64, Before/binary, GID:32/little, 0:64, Name/binary, After/binary >>). - %% @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-unsigned-integer, 1, PartyPos:8, PartyPos:32/little-unsigned-integer >>). diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index 7ca3eca..675ca81 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -1429,6 +1429,23 @@ send_0d05(#state{socket=Socket, gid=DestGID}) -> Size = 4 + byte_size(Packet), ssl:send(Socket, << Size:32/little, Packet/binary >>). +%% @doc Send the client's own player's party information, on the bottom left of the screen. +%% @todo Location and the 20 bytes following sometimes have values, not sure why; when joining a party maybe? +send_1005(Character, #state{socket=Socket, gid=DestGID}) -> + #characters{name=Name, mainlevel=#level{number=Level}, currenthp=CurrentHP, maxhp=MaxHP} = Character, + Location = << 0:512 >>, + packet_send(Socket, << 16#10050300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, + 16#00000100:32, 0:32, 16#ffffffff:32, 0:32, 16#00011200:32, DestGID:32/little, 0:64, + Name/binary, Level:8, 0:16, 1:8, 16#01010000:32, 0:32, Location/binary, + 16#ffffffff:32, 0:96, 16#ffffffff:32, 0:64, CurrentHP:32/little, MaxHP:32/little, 0:640, + 16#0100ffff:32, 16#0000ff00:32, 16#ffff0000:32, 0:640, 16#ffffffff:32, 0:768, + 16#0100ffff:32, 16#0000ff00:32, 16#ffff0000:32, 0:640, 16#ffffffff:32, 0:768, + 16#0100ffff:32, 16#0000ff00:32, 16#ffff0000:32, 0:640, 16#ffffffff:32, 0:768, + 16#0100ffff:32, 16#0000ff00:32, 16#ffff0000:32, 0:640, 16#ffffffff:32, 0:768, + 16#0100ffff:32, 16#0000ff00:32, 16#ffff0000:32, 0:640, 16#ffffffff:32, 0:448, + 16#ffffffff:32, 0:32, 16#ff020000:32, 16#ffff0000:32, 16#ffff0000:32, 16#ffff0000:32, + 16#ffff0000:32, 16#ffff0000:32, 16#ffff0000:32, 0:3680 >>). + %% @doc Party-related events. send_1006(EventID, State) -> send_1006(EventID, 0, State).