is there any possible to know other char IP address?

Forum closed. All further discussion to be discussed at https://github.com/OpenKore/

Moderator: Moderators

Message
Author
xxstreme
Human
Human
Posts: 20
Joined: 03 Dec 2008, 15:46
Noob?: Yes

is there any possible to know other char IP address?

#1 Post 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}")

Kaspy
Halfway to Eternity
Halfway to Eternity
Posts: 398
Joined: 08 Jun 2012, 15:42
Noob?: No
Location: Brazil

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

#2 Post 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
Image

xxstreme
Human
Human
Posts: 20
Joined: 03 Dec 2008, 15:46
Noob?: Yes

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

#3 Post by xxstreme »

i had a rumor that a person can do it.

Locked