BlowaXD / ChickenAPI

OpenSource Nostale Private Server Emulator API, implemented by SaltyEmu
https://blowaxd.github.io/ChickenAPI/
GNU General Public License v3.0
41 stars 7 forks source link

PACKET : UseSkillPacket #80

Closed Clavss closed 6 years ago

Clavss commented 6 years ago

PacketName

UseSkill

Packet Usage

This packet is sent when a skill is used

Packet Header

u_s

Packet Content

Sent by client: u_s {CastId} {VisualType} {MapMonsterId} {MapX} {MapY}

VisualType: 1 - players (heals/buffs) 2 - ? 3 - monsters (attacks)

Few examples

u_s 0 3 1868 (basic attack on a monster) u_s 14 1 483273 (buff on myself) u_s 4 1 483273 162 166 (dash on coord 162,166)

BlowaXD commented 6 years ago

It looks like the second body element is VisualType (3 = Monster and 1 = Player)

Clavss commented 6 years ago

Solved in #82