- Katılım
- 31 Mar 2017
- Konular
- 50
- Mesajlar
- 495
- Reaksiyon Skoru
- 280
- Altın Konu
- 0
- TM Yaşı
- 9 Yıl 2 Ay 10 Gün
- Başarım Puanı
- 124
- MmoLira
- 393
- DevLira
- 3
ROHAN2 WORLD 1-120 TR TİPİ OFFICIAL YOHARA, BALATHOR VE AMON! 80. GÜNÜNDE! +10.000 ONLİNE! HİLE VE BOT %100 ENGELLİ HEMEN TIKLA!
FİXLEME YÖNTEMİNE BAYILDIM
FONKSİYONU KULLANMAK İSTİYENLER
CMD_GENERAL.CPP AÇ
do_costume fonksiyonu içinde;
ARAT
DEĞİŞTİR
FONKSİYONU KULLANMAK İSTİYENLER
CMD_GENERAL.CPP AÇ
do_costume fonksiyonu içinde;
ARAT
Kod:
if (pHair)
{
const char* itemName = pHair->GetName();
ch->ChatPacket(CHAT_TYPE_INFO, " HAIR : %s", itemName);
for (int i = 0; i < pHair->GetAttributeCount(); ++i)
{
const TPlayerItemAttribute& attr = pHair->GetAttribute(i);
if (0 < attr.bType)
{
snprintf(buf, bufferSize, FN_point_string(attr.bType), attr.sValue);
ch->ChatPacket(CHAT_TYPE_INFO, " %s", buf);
}
}
if (pHair->IsEquipped() && arg1[0] == 'h')
ch->UnequipItem(pHair);
}
Kod:
if (pHair)
{
const char* itemName = pHair->GetName();
ch->ChatPacket(CHAT_TYPE_INFO, " HAIR : %s", itemName);
for (int i = 0; i < pHair->GetAttributeCount(); ++i)
{
const TPlayerItemAttribute& attr = pHair->GetAttribute(i);
if (attr.bType > 0)
{
const char * pAttrName = FN_point_string(attr.bType);
if (pAttrName == NULL)
continue;
snprintf(buf, sizeof(buf), FN_point_string(attr.bType), attr.sValue);
ch->ChatPacket(CHAT_TYPE_INFO, " %s", buf);
}
}
if (pHair->IsEquipped() && arg1[0] == 'h')
ch->UnequipItem(pHair);
}
- Katılım
- 23 Mar 2015
- Konular
- 88
- Mesajlar
- 475
- Çözüm
- 39
- Online süresi
- 1d 7h
- Reaksiyon Skoru
- 38
- Altın Konu
- 0
- TM Yaşı
- 11 Yıl 2 Ay 19 Gün
- Başarım Puanı
- 135
- MmoLira
- 982
- DevLira
- 0
FİXLEME YÖNTEMİNE BAYILDIM
FONKSİYONU KULLANMAK İSTİYENLER
CMD_GENERAL.CPP AÇ
do_costume fonksiyonu içinde;
ARAT
DEĞİŞTİRKod:if (pHair) { const char* itemName = pHair->GetName(); ch->ChatPacket(CHAT_TYPE_INFO, " HAIR : %s", itemName); for (int i = 0; i < pHair->GetAttributeCount(); ++i) { const TPlayerItemAttribute& attr = pHair->GetAttribute(i); if (0 < attr.bType) { snprintf(buf, bufferSize, FN_point_string(attr.bType), attr.sValue); ch->ChatPacket(CHAT_TYPE_INFO, " %s", buf); } } if (pHair->IsEquipped() && arg1[0] == 'h') ch->UnequipItem(pHair); }
Kod:if (pHair) { const char* itemName = pHair->GetName(); ch->ChatPacket(CHAT_TYPE_INFO, " HAIR : %s", itemName); for (int i = 0; i < pHair->GetAttributeCount(); ++i) { const TPlayerItemAttribute& attr = pHair->GetAttribute(i); if (attr.bType > 0) { const char * pAttrName = FN_point_string(attr.bType); if (pAttrName == NULL) continue; snprintf(buf, sizeof(buf), FN_point_string(attr.bType), attr.sValue); ch->ChatPacket(CHAT_TYPE_INFO, " %s", buf); } } if (pHair->IsEquipped() && arg1[0] == 'h') ch->UnequipItem(pHair); }
Forumda görülen her fixin yapılmamasının ispatı niteliğinde
bunu kullanın konudaki fix falan değil.- Katılım
- 27 Nis 2017
- Konular
- 91
- Mesajlar
- 2,386
- Çözüm
- 47
- Online süresi
- 17d 3h
- Reaksiyon Skoru
- 1,571
- Altın Konu
- 2
- TM Yaşı
- 9 Yıl 1 Ay 13 Gün
- Başarım Puanı
- 248
- MmoLira
- 439
- DevLira
- 13
FİXLEME YÖNTEMİNE BAYILDIM
FONKSİYONU KULLANMAK İSTİYENLER
CMD_GENERAL.CPP AÇ
do_costume fonksiyonu içinde;
ARAT
DEĞİŞTİRKod:if (pHair) { const char* itemName = pHair->GetName(); ch->ChatPacket(CHAT_TYPE_INFO, " HAIR : %s", itemName); for (int i = 0; i < pHair->GetAttributeCount(); ++i) { const TPlayerItemAttribute& attr = pHair->GetAttribute(i); if (0 < attr.bType) { snprintf(buf, bufferSize, FN_point_string(attr.bType), attr.sValue); ch->ChatPacket(CHAT_TYPE_INFO, " %s", buf); } } if (pHair->IsEquipped() && arg1[0] == 'h') ch->UnequipItem(pHair); }
Kod:if (pHair) { const char* itemName = pHair->GetName(); ch->ChatPacket(CHAT_TYPE_INFO, " HAIR : %s", itemName); for (int i = 0; i < pHair->GetAttributeCount(); ++i) { const TPlayerItemAttribute& attr = pHair->GetAttribute(i); if (attr.bType > 0) { const char * pAttrName = FN_point_string(attr.bType); if (pAttrName == NULL) continue; snprintf(buf, sizeof(buf), FN_point_string(attr.bType), attr.sValue); ch->ChatPacket(CHAT_TYPE_INFO, " %s", buf); } } if (pHair->IsEquipped() && arg1[0] == 'h') ch->UnequipItem(pHair); }

- Katılım
- 24 Tem 2017
- Konular
- 11
- Mesajlar
- 1,195
- Çözüm
- 1
- Online süresi
- 9d 21h
- Reaksiyon Skoru
- 535
- Altın Konu
- 0
- TM Yaşı
- 8 Yıl 10 Ay 20 Gün
- Başarım Puanı
- 191
- MmoLira
- 3,985
- DevLira
- 0
Teşekkürler...
Şu an konuyu görüntüleyenler (Toplam : 0, Üye: 0, Misafir: 0)
Benzer konular
- Cevaplar
- 1
- Görüntüleme
- 741
- Cevaplar
- 3
- Görüntüleme
- 2K
- Cevaplar
- 65
- Görüntüleme
- 12K
- Cevaplar
- 22
- Görüntüleme
- 6K



