Page 1 of 1

is there any possible to know other char IP address?

Posted: 02 Apr 2013, 22:34
by xxstreme
in \src\Network\Receive\serverType0.pm

there was packet receive for actor_exist

'actor_exists', 'a4 v14 a4 a2 v2 C2 a3 C3 v',
[qw(ID walk_speed opt1 opt2 option type hair_style weapon lowhead shield tophead midhead hair_color clothes_color head_dir guildID emblemID manner opt3 stance sex coords unknown1 unknown2 act lv)]], #standing

what is content data for : manner, unknown1, and unknown2?

and i try to separate data type, is this right for pack data type?

a4 ID
v14 walk_speed opt1 opt2 option type hair_style weapon lowhead shield tophead midhead hair_color clothes_color head_dir
a4 guildID
a2 emblemID
v2 manner opt3
C2 stance sex
a3 coords unknown1 unknown2
C3 act
v lv


how to extract all the content data?

in \src\Network\Receive.pm

there was packet specific for actor_exist

can i use $unknown1 = $actor->{unknown1} to get the data
or i must unpack with same data format
$unknown1 = unpack("a3","$actor->{unknown1}")

Re: is there any possible to know other char IP address?

Posted: 03 Apr 2013, 04:47
by Kaspy
It would hardly be specific to a given IP, because you do not have the server send it to client.

Player -> Servers -> Sends data to other players near

Re: is there any possible to know other char IP address?

Posted: 15 Apr 2013, 08:18
by xxstreme
i had a rumor that a person can do it.