I can´t speak english

So excuses me by the coherence errors.
In exchange for 100k of Gold, you get the DKSet items.
In the others /dkset, if you get the bag Full Load, the items has been deleted. In this, you need to keep the items in the warehouse, exept 100k.
Code: Select all
void CGame::GetDkSet(int iClientH) //by KaoZureS & aDaraio Alejo
{
class CItem * pItem;
int dkM[]={706,707,708,710};
int dkW[]={724,725,726,728};
int dmM[]={711,712,713,913};
int dmW[]={729,730,731,914};
int weapon, iItemID, i, iEraseReq;
DWORD dwGoldCount;
if (iCalcTotalWeight(iClientH) < 20000) {
if(m_pClientList[iClientH] == NULL) return;
if(m_pClientList[iClientH]->m_iLevel < 180) return;
dwGoldCount = dwGetItemCount(iClientH, "Gold");
if(dwGoldCount >= 100000)
{
SetItemCount(iClientH, "Gold", dwGoldCount - 100000);
}
else
{
SendNotifyMsg(NULL, iClientH, DEF_NOTIFY_NOTICEMSG, NULL, NULL, NULL, "You need 100k of Gold.");
return;
}
for (i = 0; i <= 4; i++)
{
pItem = new class CItem;
iItemID=-1;
if (m_pClientList[iClientH]->m_cSex == 1)
{
if (m_pClientList[iClientH]->m_iStr > 100)
{
iItemID=dkM[i];
}
else
{
iItemID=dmM[i];
}
}
else
{
if (m_pClientList[iClientH]->m_iStr > 100)
{
iItemID=dkW[i];
}
else
{
iItemID=dmW[i];
}
}
if (i == 4)
{
if (m_pClientList[iClientH]->m_iStr > m_pClientList[iClientH]->m_iInt)
{
weapon=709;
}
else
{
weapon=714;
}
iItemID = weapon;
}
if (iItemID != -1)
{
_bInitItemAttr(pItem, iItemID);
pItem->m_sTouchEffectType = DEF_ITET_UNIQUE_OWNER;
pItem->m_sTouchEffectValue1 = m_pClientList[iClientH]->m_sCharIDnum1;
pItem->m_sTouchEffectValue2 = m_pClientList[iClientH]->m_sCharIDnum2;
pItem->m_sTouchEffectValue3 = m_pClientList[iClientH]->m_sCharIDnum3;
_bAddClientItemList(iClientH, pItem, &iEraseReq);
SendNotifyMsg(NULL, iClientH, DEF_NOTIFY_NOTICEMSG, NULL, NULL, NULL, "You get DKSet.");
}
}
}
else
{
SendNotifyMsg(NULL, iClientH, DEF_NOTIFY_NOTICEMSG, NULL, NULL, NULL, "Save your items in the warehouse pls.");
}
}
//dk set Fin //