LCKB
Removing Ignition Message.... - Printable Version

+- LCKB (https://lckb.dev/forum)
+-- Forum: ** OLD LCKB DATABASE ** (https://lckb.dev/forum/forumdisplay.php?fid=109)
+--- Forum: Guides & Help Section (https://lckb.dev/forum/forumdisplay.php?fid=193)
+---- Forum: Help & Support (https://lckb.dev/forum/forumdisplay.php?fid=157)
+----- Forum: Ep4 Support (https://lckb.dev/forum/forumdisplay.php?fid=128)
+----- Thread: Removing Ignition Message.... (/showthread.php?tid=4770)



- BayBay - 06-01-2021


Hello guys i know i ask alot but when i dont find something by myself its why i ask here cuze you guys know more....

I manage to remove Ignition but im still getting this message everytime i kill mobs and then i relog i get this:

2

Where must i disable or remove this ? 




- rondo157 - 06-02-2021


Engine\Network\SessionStateInfo.cpp

Line: 2055
IMPLEMENT_MSG_UPDATE(updateEPReset)
{
UpdateClient::EPInit* pRecv = reinterpret_cast<UpdateClient::EPInit*>(istr->GetBuffer());

if (pRecv->isInit == true)
{
return;
}
else
{
return;
}
}

 




- BayBay - 06-02-2021



11 hours ago, rondo157 said:




Engine\Network\SessionStateInfo.cpp




Line: 2055
IMPLEMENT_MSG_UPDATE(updateEPReset)
{
UpdateClient::EPInit* pRecv = reinterpret_cast<UpdateClient::EPInit*>(istr->GetBuffer());

if (pRecv->isInit == true)
{
return;
}
else
{
return;
}
}


 




Like this:

 

 

Line: 2055
IMPLEMENT_MSG_UPDATE(updateEPReset)
{*/
UpdateClient::EPInit* pRecv = reinterpret_cast<UpdateClient::EPInit*>(istr->GetBuffer());

if (pRecv->isInit == true)
{
return;
}
else
{
return;
}/*
}



- Desarija - 06-02-2021


/* -> comment starts

*/ -> comment ends

 

/*comment*/

not

*/comment/*

 




- BayBay - 06-02-2021



49 minutes ago, Desarija said:




/* -> comment starts

*/ -> comment ends



 




/*comment*/


not




*/comment/*


 




Haha you´re right!´my bad. i will edit it correctly and see what happens!

Thanks AGAIN!