Yardım Game Source build hata

  • Konuyu açan Konuyu açan onurexs
  • Açılış Tarihi Açılış Tarihi
  • Yanıt Yanıt 3
  • Gösterim Gösterim 485
Konu sahibi bu konuda soru soruyor. Sorusu ile ilgili bilgisi olanların yanıtlamasını bekliyor.

onurexs

Üye
Üye
Mesaj
35
Çözümler
1
Beğeni
11
Puan
414
Ticaret Puanı
0

Dosya Eklentileri

  • Adsız.webp
    Adsız.webp
    48,3 KB · Gösterim: 98
  • char.cppshop.h.zip
    char.cppshop.h.zip
    49,1 KB · Gösterim: 4
Son düzenleme:
char.cpp içinde bul:
C++:
Genişlet Daralt Kopyala
extern std::map<DWORD, DWORD> g_ShopIndexCount;
extern std::map<int, TShopCost> g_ShopCosts;

Altına ekle:
C++:
Genişlet Daralt Kopyala
int get_offline_shops_count()
{
        int cnt=0;
        CharacterVectorInteractor i;
        if (CHARACTER_MANAGER::instance().GetCharactersByRaceNum(30000, i))
        {
                CharacterVectorInteractor::iterator it = i.begin();
                while (it != i.end()) {
                        LPCHARACTER pc = *it++;
                        if (pc && pc->IsPrivShop())
                                ++cnt;
                }
        }
        return cnt;
}
 
Geri
Üst