What packet I have to send to reload my hero informations?
I have created the CelestialTao, it recalculates my attributes, saves but it wont show them until I reopen the hero status menu.
This is what I have used so far :
_client.Send(new UpdatePacket(_client.UID, Enum.UpdateType.Agility, _client.Agility));
_client.Send(new UpdatePacket(_client.UID, Enum.UpdateType.Spirit, _client.Spirit));
_client.Send(new UpdatePacket(_client.UID, Enum.UpdateType.Vitality, _client.Vitality));
_client.Send(new UpdatePacket(_client.UID,Enum.UpdateType.Strength, _client.Strength));
Or how to call HeroInformationPacket?
_client.send(new Heroinformationpacket()); ??