else if (item->GetVnum() == 76028)
{
bool hasAttribute99 = false;
int32_t value1 = (number(1, 10));
for (int i = 0; i < item2->GetAttributeCount(); i++)
{
if (item2->GetAttributeType(i) == [COLOR=rgb(184, 49, 47)]99[/COLOR])
{
item2->SetForceAttribute(i, [COLOR=rgb(184, 49, 47)]99[/COLOR], value1);
hasAttribute99 = true;
break;
}
}
if (item2->GetAttributeCount() < 5 )
{
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("ESYANIZDA_ENAZ_5EFSUN_OLMALI"));
return false;
}
else if (!hasAttribute99)
{
item2->SetForceAttribute(item2->GetAttributeCount(), [COLOR=rgb(184, 49, 47)]99[/COLOR], value1);
}
// item2->SetForceAttribute(1, 71, value2);
}
else if (item->GetVnum() == 76029)
{
bool hasAttribute99 = false;
int32_t value1;
int randomNumber = number(1, 100); // Rastgele bir sayı üret
if (randomNumber <= 10)
{
value1 = (number(30, 50)); // %20 şans ile 30-50 arası değer alır
}
else
{
value1 = (number(10, 30)); // %80 şans ile 10-20 arası değer alır
}
for (int i = 0; i < item2->GetAttributeCount(); i++)
{
if (item2->GetAttributeType(i) == [COLOR=rgb(184, 49, 47)]99[/COLOR])
{
item2->SetForceAttribute(i, [COLOR=rgb(184, 49, 47)]99[/COLOR], value1);
hasAttribute99 = true;
break;
}
}
if (item2->GetAttributeCount() < 5)
{
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("ESYANIZDA_ENAZ_5EFSUN_OLMALI"));
return false;
}
else if (!hasAttribute99)
{
item2->SetForceAttribute(item2->GetAttributeCount(), [COLOR=rgb(184, 49, 47)]99[/COLOR], value1);
}
}