Callback Lim10Ata\Flatix\xfwidgets::gethtml is invalid (error_invalid_class).

Oyuna Girişte "Hoşgeldiniz" Yazısı !

Jetain

New member
Katılım
2 Kas 2023
Mesajlar
26
Tepkime puanı
2
Puanları
1
Kod:
void CUser::GirisNotice(){
DateTime time;
std::string GirisNotice;
std::string ServerDuyuru;
std::string Welcome;
GirisNotice = string_format("HoşGeldiniz");
ServerDuyuru = string_format("Server Time : %04d-%02d-%02d %02d:%02d", time.GetYear(), time.GetMonth(), time.GetDay(), time.GetHour(), time.GetMinute());
Welcome = string_format("Hello %s", GetName().c_str());
Packet SecurityNotice(WIZ_CHAT, uint8(GENERAL_CHAT));
SecurityNotice << GetNation() << GetSocketID() << uint8(0) << GirisNotice;
Send(&SecurityNotice);
Packet DuyuruNotice(WIZ_CHAT, uint8(PUBLIC_CHAT));
DuyuruNotice << GetNation() << GetSocketID() << uint8(0) << ServerDuyuru;
Send(&DuyuruNotice);
Packet WelcomeNotice(WIZ_CHAT, uint8(PUBLIC_CHAT));
WelcomeNotice << GetNation() << GetSocketID() << uint8(0) << Welcome;
Send(&WelcomeNotice);
}
 
Üst