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!
case 80003:
{
const int amount_to_add = 50000000;
const long MAX_GOLD_LIMIT = GOLD_MAX;
if (GetExchange() || GetMyShop())
{
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("You cannot use this while trading or in shop windows."));
return false;
}
if (GetGold() + amount_to_add > MAX_GOLD_LIMIT)
{
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("<Fifty Million> The amount of space in your bag is too much."));
return false;
}
PointChange(POINT_GOLD, amount_to_add, false);
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Fifty Million Moneybox."));
item->SetCount(item->GetCount() - 1);
break;
}
case 80004:
{
const int amount_to_add = 100000000;
const long MAX_GOLD_LIMIT = GOLD_MAX;
if (GetExchange() || GetMyShop())
{
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("You cannot use this while trading or in shop windows."));
return false;
}
if (GetGold() + amount_to_add > MAX_GOLD_LIMIT)
{
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("<One Hundred> The amount of space in your bag is too much."));
return false;
}
PointChange(POINT_GOLD, amount_to_add, false);
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("One Hundred Million Moneybox."));
item->SetCount(item->GetCount() - 1);
break;
}
case 80005:
{
const int amount_to_add = 500000000;
const long MAX_GOLD_LIMIT = GOLD_MAX;
if (GetExchange() || GetMyShop())
{
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("You cannot use this while trading or in shop windows."));
return false;
}
if (GetGold() + amount_to_add > MAX_GOLD_LIMIT)
{
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("<Five Hundred> The amount of space in your bag is too much."));
return false;
}
PointChange(POINT_GOLD, amount_to_add, false);
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Five Hundred Million Moneybox."));
item->SetCount(item->GetCount() - 1);
break;
}
case 80006:
{
const int amount_to_add = 999999999;
const long MAX_GOLD_LIMIT = GOLD_MAX;
if (GetExchange() || GetMyShop())
{
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("You cannot use this while trading or in shop windows."));
return false;
}
if (GetGold() + amount_to_add > MAX_GOLD_LIMIT)
{
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("<One Trillion> The amount of space in your bag is too much."));
return false;
}
PointChange(POINT_GOLD, amount_to_add, false);
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("One Trillion Moneybox."));
item->SetCount(item->GetCount() - 1);
break;
}
case 80007:
{
const int amount_to_add = 1999999999;
const long MAX_GOLD_LIMIT = GOLD_MAX;
if (GetExchange() || GetMyShop())
{
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("You cannot use this while trading or in shop windows."));
return false;
}
if (GetGold() + amount_to_add > MAX_GOLD_LIMIT)
{
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("<Two Trillion> The amount of space in your bag is too much."));
return false;
}
PointChange(POINT_GOLD, amount_to_add, false);
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Two Trillion Moneybox."));
item->SetCount(item->GetCount() - 1);
break;
}
}
