Çözüldü TPacketGCCharacterAdditionalInfo Syserr

  • Konuyu açan Konuyu açan nesterali
  • Açılış Tarihi Açılış Tarihi
  • Yanıt Yanıt 4
  • Gösterim Gösterim 624
Bu konu çözüme ulaştırılmıştır. Çözüm için konuya yazılan tüm yorumları okumayı unutmayın. Eğer konudaki yorumlar sorununuzu çözmediyse yeni bir konu açabilirsiniz.
Durum
İçerik kilitlendiği için mesaj gönderimine kapatıldı.

nesterali

Üye
Üye
Mesaj
149
Beğeni
62
Puan
726
Ticaret Puanı
0
merhabalar böyle bir syserr alıyorum sebebi nedir nasıl çözülür bilen yardım edebilecek varmı :/
Kod:
Genişlet Daralt Kopyala
0802 02:20:56657 :: TPacketGCCharacterAdditionalInfo name=A]BORU vid=1197146112 race=0 Error
0802 02:20:57005 :: TPacketGCCharacterAdditionalInfo name=lıkçı vid=1631715328 race=9009 Error
0802 02:20:57010 :: TPacketGCCharacterAdditionalInfo name=anyo vid=1916862464 race=20002 Error
0802 02:20:57010 :: TPacketGCCharacterAdditionalInfo name=pocu vid=1698955264 race=9005 Error
0802 02:20:57012 :: TPacketGCCharacterAdditionalInfo name=ng-Hae vid=1866989568 race=20094 Error
0802 02:20:57012 :: TPacketGCCharacterAdditionalInfo name=tın Damarı vid=1816199168 race=20052 Error
0802 02:21:46459 :: TPacketGCCharacterAdditionalInfo name=3sd vid=842072064 race=2 Error
0802 02:21:46666 :: TPacketGCCharacterAdditionalInfo name=lıkçı vid=1631715328 race=9009 Error
0802 02:21:46669 :: TPacketGCCharacterAdditionalInfo name=anyo vid=1916862464 race=20002 Error
0802 02:21:46669 :: TPacketGCCharacterAdditionalInfo name=pocu vid=1698955264 race=9005 Error
0802 02:21:46669 :: TPacketGCCharacterAdditionalInfo name=ng-Hae vid=1866989568 race=20094 Error
0802 02:21:46669 :: TPacketGCCharacterAdditionalInfo name=tın Damarı vid=1816199168 race=20052 Error
 
client ve game srcndeki packet.hler içerisinde bulunan TPacketGCCharacterAdditionalInfo; kısmı eşleşmiyor sanırım
 
Çözüm
client ve game srcndeki packet.hler içerisinde bulunan TPacketGCCharacterAdditionalInfo; kısmı eşleşmiyor sanırım
clientte derleme yaparken en alt satırda işaretledim yeri warning veriyor siz ne yaptınız o kısma
C++:
Genişlet Daralt Kopyala
UINT CInstanceBase::GetPrestigeGrade()
{
    int pTitle_vegas[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19};   

    if (m_sPrestige == pTitle_vegas[1])
        return 0;
    else if (m_sPrestige == pTitle_vegas[2])
        return 1;
    else if (m_sPrestige == pTitle_vegas[3])
        return 2;
    else if (m_sPrestige == pTitle_vegas[4])
        return 3;
    else if (m_sPrestige == pTitle_vegas[5])
        return 4;
    else if (m_sPrestige == pTitle_vegas[6])
        return 5;
    else if (m_sPrestige == pTitle_vegas[7])
        return 6;
    else if (m_sPrestige == pTitle_vegas[8])
        return 7;
    else if (m_sPrestige == pTitle_vegas[9])
        return 8;
    else if (m_sPrestige == pTitle_vegas[10])
        return 9;
    else if (m_sPrestige == pTitle_vegas[11])
        return 10;
    else if (m_sPrestige == pTitle_vegas[12])
        return 11;
    else if (m_sPrestige == pTitle_vegas[13])
        return 12;
    else if (m_sPrestige == pTitle_vegas[14])
        return 13;
    else if (m_sPrestige == pTitle_vegas[15])
        return 14;
    else if (m_sPrestige == pTitle_vegas[16])
        return 15;
    else if (m_sPrestige == pTitle_vegas[17])
        return 16;
    else if (m_sPrestige == pTitle_vegas[18])
        return 17;
    else if (m_sPrestige == pTitle_vegas[19])
        return 18;
    else if (m_sPrestige == pTitle_vegas[0])
        return 19;
} (bu kısım)
#endif
 
Durum
İçerik kilitlendiği için mesaj gönderimine kapatıldı.
Üst