Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Boss Notice

Experienced Elementalist
Joined
Sep 13, 2014
Messages
232
Reaction score
85
find void CAttackArbiter::OnDied()




Code:
#ifdef __MONSTER_NOTICE
 if( m_pDefender->GetProp()->dwClass == RANK_SUPER )
 {
	 CString BossNotice;
	 BossNotice.Format( prj.GetText(TID_BOSS_DIE), m_pAttacker->GetName(), m_pDefender->GetName());
	 g_DPCoreClient.SendSystem(BossNotice);
 }
#endif




if you kill the boss the server will notice your name :)
 
Back
Top