- Katılım
- 20 Kas 2025
- Konular
- 104
- Mesajlar
- 677
- Online süresi
- 12g 84690s
- Reaksiyon Skoru
- 715
- Altın Konu
- 0
- Başarım Puanı
- 163
- Yaş
- 32
- TM Yaşı
- 5 Ay
- MmoLira
- 10,648
- DevLira
- 3
Metin2 EP, Valorant VP dahil tüm oyun ürünlerini en uygun fiyatlarla bulabilir, Item ve Karakterlerinizi hızlıca satabilirsiniz. HEMEN TIKLA!
Selamlar,
Kod:
CharacterSelectionHandler.cpp --- 1.bul ---
---------------------------------------------------------------------------------------
void CUser::GameStartProcess() --- 2.bul ---
--- 3.Eklemek ---
if (isGM())
{
if (g_pMain->GmisOnlineNotice)
g_pMain->SendColoredNotice(string_format("[GM ONLİNE] : GameMaster %s İs Online", GetName().c_str()), 1, 255, 1);
---------------------------------------------------------------------------------------
GameServerDlg.h --- 4.bul ---
--- 5.Eklemek ---
bool GmisOnlineNotice;
---------------------------------------------------------------------------------------
GameServerDlg.cpp --- 6.bul ---
---------------------------------------------------------------------------------------
void CGameServerDlg::GetEventIni() --- 7.bul ---
--- 8.Eklemek ---
GmisOnlineNotice = ini.GetInt("OTHER", "GM_IS_ONLINE_NOTICE", true);
---------------------------------------------------------------------------------------
GameServerDlg.cpp --- 9.bul ---
--- 10.Eklemek ---
void CGameServerDlg::SendColoredNotice(std::string Message, uint8 R, uint8 G, uint8 B)
{
Packet Logos(WIZ_LOGOSSHOUT);
std::string DeaFSezo = string_format(" : %s", Message.c_str());
Logos.SByte();
Logos << uint8(2) << uint8(1) << R << G << B << uint8(0) << DeaFSezo;
g_pMain->Send_All(&Logos);
}
---------------------------------------------------------------------------------------
GameServerDlg.h --- 11.bul ---
--- 12.Eklemek ---
void SendColoredNotice(std::string Message, uint8 R, uint8 G, uint8 B);
---------------------------------------------------------------------------------------













