noisiv 1
noisiv
Manwe Work 1
Manwe Work
Agora Metin2 1
Agora Metin2
Bvural41 1
Bvural41
onur akbaş 1
onur akbaş
IronTalonX 1
IronTalonX
D 1
delimuratt
berzahx 1
berzahx
PrimeAC 1
PrimeAC
DEVLOPER 1
DEVLOPER
ShadowFon 1
ShadowFon
mavzermete 1
mavzermete
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

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
 
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