HERAKLES Otomatik Avlı kalıcı sunucu. 19 Haziran'da açılıyor. Atius & Wizard güvencesiyle hemen kayıt ol, ön kayıt ödülleri aktif. HEMEN TIKLA!
Paylaşım için teşekkürler
ÖNERİ HIZLI KANAL VE OFF PAZAR GİBİ PENCERELERİDE EKLEYEREK İTEM KOPYALAMAYI ENGELLEME ŞANSINIZ VAR NE OLUR NE OLMAZ FAZLA KONTROL GÖZ ÇIKARTMAZ.
Kod:
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;
}
}
Şu an konuyu görüntüleyenler (Toplam : 0, Üye: 0, Misafir: 0)
Benzer konular
- Cevaplar
- 14
- Görüntüleme
- 285
- Cevaplar
- 238
- Görüntüleme
- 4K
- Cevaplar
- 8
- Görüntüleme
- 856
