can any one help me with those packets ?
is csro r have pet level packet ?
or how i can parse exp packet
is csro r have pet level packet ?
or how i can parse exp packet
Talking about vsro. 1.188.. But I think it should be the same thing.Quote:
SERVER_PET_UPDATE = 0x30C9
uint petUniqueID
byte updateType
if (updateType == 7) // Model changed
{
uint newModelID
// The only way to change the model of pet is by level up/down (a query can give you the level probably)
}
yeah its same packet but not the same structQuote:
Talking about vsro. 1.188.. But I think it should be the same thing.
Parsing the exp will consume extra resources/processes from server side and using recursivity to handle properly all the levels..PHP Code:if (updateType == 7) // Model changed
{
uint newModelID
// The only way to change the model of pet is by level up/down (a query can give you the level probably)
}