@Straight Edgy agreed, but fix ur ida symbols :(
PHP Code:
void __thiscall CWvsContext::OnSetGender(CWvsContext *this, CInPacket *iPacket)
{
this->m_nGender = (unsigned __int8)CInPacket::Decode1(iPacket);
}
PHP Code:
enum GENDER
{
GENDER_MALE = 0x0,
GENDER_FEMALE = 0x1,
GENDER_NONE = 0x2,
};
To be honest, I'm kind of surprised people didn't know about this. I first messed with this when trying to make all items transgender so anyone could buy, but it didn't work lolol.. I wonder, do they know about how Nexon handles their Report system? It's another thing I didn't see in many sources and is the exact same thing as gender, enables the functionality sent upon migration.
PHP Code:
void __thiscall CWvsContext::OnClaimSvrStatusChanged(CWvsContext *this, CInPacket *iPacket)
{
this->m_bClaimSvrConnected = CInPacket::Decode1(iPacket) != 0;
}