| 813 | |
| 814 | |
| 815 | void cProtocol125::SendExperience(void) |
| 816 | { |
| 817 | cCSLock Lock(m_CSPacket); |
| 818 | WriteByte (PACKET_EXPERIENCE); |
| 819 | WriteFloat (m_Client->GetPlayer()->GetXpPercentage()); |
| 820 | WriteShort (m_Client->GetPlayer()->GetXpLevel()); |
| 821 | WriteShort (m_Client->GetPlayer()->GetCurrentXp()); |
| 822 | Flush(); |
| 823 | } |
| 824 | |
| 825 | |
| 826 |
nothing calls this directly
no test coverage detected