ResurrectAtTheDesignatedPlace

02/04/2022 08:57 halloway520#1
PHP Code:
    else if (opcode == MsgOpcodes::SERVER_CHARACTER_DIED)
    {
        
//unkByte01 = 3    by char    (job / nojob)
        //unkByte01 = 4    by mob
        
uint8_t theTypeOfBeKilled packet->Read<uint8_t>();
        
        if (
theTypeOfBeKilled == 3)
        {
            
CMsgStreamBufferresurrectAtTheDesignatedPlace = new CMsgStreamBuffer(0x3053);
            
resurrectAtTheDesignatedPlace->Write<uint8_t>(2);
            
resurrectAtTheDesignatedPlace->SendToServer();
        }
    } 
I want the character will 'resurrect at the designated place ', when killed by someone else,

but this code is don't work
PHP Code:
CMsgStreamBufferresurrectAtTheDesignatedPlace = new CMsgStreamBuffer(0x3053);
            
resurrectAtTheDesignatedPlace->Write<uint8_t>(2);
            
resurrectAtTheDesignatedPlace->SendToServer(); 
someone can help? ths!:handsdown:
02/04/2022 10:10 thaidu0ngpr0#2
Send live teleport to filter or use reverse scroll packet
02/04/2022 10:59 halloway520#3
Quote:
Originally Posted by thaidu0ngpr0 View Post
Send live teleport to filter or use reverse scroll packet
thanks friend! I fix it,

Thanks very much again:handsdown: