Questions
Can I increase or decrease the price of each coin?
You can do this manually from the database, but we do not recommend doing so, as it is better for the system to run itself.
The coin prices are stored in the bit_crypto_coins table with the amount column. While you can manually update these values, the script is designed to automatically adjust prices based on user trading activity.
How do I add more cryptocurrencies?
Currently, the script supports three cryptocurrencies (Bitcoin, Ethereum, Ripple). Adding more coins would require modifications to the encrypted files, which is not supported.
Can players lose money if coin prices drop?
No, the current system is designed so that coin prices only increase as users invest. There is no mechanism for prices to decrease.
How do I customize the avatars?
You can replace the avatar images in the img/avatar/ folder (numbered 1-40.png) with your own images. Make sure to keep the same file names and format.
Can I change the coin names?
Yes, you can change the coin names in the configuration:
CoinNames.crypto1 = "Bitcoin"
CoinNames.crypto2 = "Ethereum"
CoinNames.crypto3 = "Ripple"
However, you must also update the coin names in the database to match:
UPDATE bit_crypto_coins SET coinname = 'YourNewName' WHERE coinname = 'Bitcoin';
How do I reset coin prices?
You can reset coin prices by updating the database:
UPDATE bit_crypto_coins SET amount = 1.0 WHERE coinname = 'Bitcoin';
UPDATE bit_crypto_coins SET amount = 1.0 WHERE coinname = 'Ethereum';
UPDATE bit_crypto_coins SET amount = 1.0 WHERE coinname = 'Ripple';
Can I track transactions?
Yes, you can configure Discord webhooks to log all buy and sell transactions:
Config.DiscordBuys = "your_webhook_url"
Config.DiscordSells = "your_webhook_url"