psu_game: Small change to send_0d01 based on research.
This commit is contained in:
parent
6ec02be0f4
commit
1d0c9ff960
@ -1359,9 +1359,10 @@ send_0c10(Options) ->
|
|||||||
%% @todo The large chunk of 0s can have some values set... but what are they used for?
|
%% @todo The large chunk of 0s can have some values set... but what are they used for?
|
||||||
%% @todo The values after the Char variable are the flags. Probably use bits to define what flag is and isn't set. Handle correctly.
|
%% @todo The values after the Char variable are the flags. Probably use bits to define what flag is and isn't set. Handle correctly.
|
||||||
send_0d01(User) ->
|
send_0d01(User) ->
|
||||||
|
GID = User#egs_user_model.id,
|
||||||
CharBin = psu_characters:character_tuple_to_binary(User#egs_user_model.character),
|
CharBin = psu_characters:character_tuple_to_binary(User#egs_user_model.character),
|
||||||
OptionsBin = psu_characters:options_tuple_to_binary((User#egs_user_model.character)#characters.options),
|
OptionsBin = psu_characters:options_tuple_to_binary((User#egs_user_model.character)#characters.options),
|
||||||
send(<< (header(16#0d01))/binary, CharBin/binary,
|
send(<< 16#0d010300:32, 16#ffff:16, 0:144, 16#00011300:32, GID:32/little, 0:64, CharBin/binary,
|
||||||
16#ffbbef1c:32, 16#f8ff0700:32, 16#fc810916:32, 16#7802134c:32,
|
16#ffbbef1c:32, 16#f8ff0700:32, 16#fc810916:32, 16#7802134c:32,
|
||||||
16#b0c0040f:32, 16#7cf0e583:32, 16#b7bce0c6:32, 16#7ff8f963:32,
|
16#b0c0040f:32, 16#7cf0e583:32, 16#b7bce0c6:32, 16#7ff8f963:32,
|
||||||
16#3fd7ffff:32, 16#fff7ffff:32, 16#f3ff63e0:32, 16#1fe00000:32,
|
16#3fd7ffff:32, 16#fff7ffff:32, 16#f3ff63e0:32, 16#1fe00000:32,
|
||||||
|
Loading…
Reference in New Issue
Block a user