emirhanHCL 1
emirhanHCL
farkmt2official 1
farkmt2official
mannaxxx 1
mannaxxx
kralhakan2009 1
kralhakan2009
Vahsi Uzman 1
Vahsi Uzman
Best Studio 1
Best Studio
Hikaye Ekle
Kaynak ikonu

Yeni Bar Sistemi Src Tabanlı 2025-12-24

indirmek için izniniz yok
  • Konuyu başlatan Konuyu başlatan ftyazilim
  • Başlangıç tarihi Başlangıç tarihi
  • Cevaplar Cevaplar 7
  • Görüntüleme Görüntüleme 1K

Türkiye'de ilk Mobil & PC Aynı Anda Metin2 Oyna. Triarchonline kalıcı ve uzun ömürlü yapısı ile 24 Temmuz'da açılıyor. | 1-99 Mobil Metin2 Triarch 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)

Geri
Üst