Залил бот на SpinnerCoin
Качайте, проверяйте
Uploaded SpinnerCoin bot
Download and check
https://github.com/Re-Diss/SpinnerCoin
Поделиться/Share 👈
Качайте, проверяйте
Uploaded SpinnerCoin bot
Download and check
https://github.com/Re-Diss/SpinnerCoin
Поделиться/Share 👈
👍6❤2
Обновил бота на SpinnerCoin
Updates for SpinnerCoin
Что нового:
1. Добавил проверку на APPLY_DAILY_ENERGY и APPLY_DAILY_TURBO
2. TAPS_COUNT будет применятся только если спинер уровня 12 и выше и смайнен. Если не смайнен то значение будет по умолчанию от 5 до 7
What's new:
1. Added a check for APPLY_DAILY_ENERGY and APPLY_DAILY_TURBO
2. TAPS_COUNT will only be applied if the spinner level is 12 or higher and has been minted. If not minted, the default value from 5 to 7 will be applied
https://github.com/Re-Diss/SpinnerCoin
Поделиться/Share 👈
Updates for SpinnerCoin
Что нового:
1. Добавил проверку на APPLY_DAILY_ENERGY и APPLY_DAILY_TURBO
2. TAPS_COUNT будет применятся только если спинер уровня 12 и выше и смайнен. Если не смайнен то значение будет по умолчанию от 5 до 7
What's new:
1. Added a check for APPLY_DAILY_ENERGY and APPLY_DAILY_TURBO
2. TAPS_COUNT will only be applied if the spinner level is 12 or higher and has been minted. If not minted, the default value from 5 to 7 will be applied
https://github.com/Re-Diss/SpinnerCoin
Поделиться/Share 👈
👍6
Обновил MemeFi
Updates for MemeFi
Сделал что сессиии не стартуют все вместе одновременно. Возможно это пофиксит too many requests
Sessions do not start all together at the same time. Perhaps it will fix too many requests
https://github.com/Re-Diss/MemeFiV2
Поделиться/Share 👈
Updates for MemeFi
Сделал что сессиии не стартуют все вместе одновременно. Возможно это пофиксит too many requests
Sessions do not start all together at the same time. Perhaps it will fix too many requests
https://github.com/Re-Diss/MemeFiV2
Поделиться/Share 👈
👍7
Scriptron
И так, как и обещал пишу пост о том, как настраивать конфигурации скрипта под бота? Много вижу в похожих группах люди часто просто ставят скрипт и ранят его с конфигурациями по умолчанию, либо просят скинуть им конфигурации. Это крайне не правильно, потому…
EN version:
People often install and run scripts with default configurations, or ask someone to send them the configurations. This is wrong because the default settings copy from one repository to another, and since the developers are lazy people, they do not change them. As a result, at the initial stage, we get +300,000 clicks per second for turbo boost and possible blacklisting as a bot.
It is also wrong to use other people’s configurations, since we do not know the level of boosts of the person who is giving us them and there is also a risk of clicking more than necessary. Therefore, I decided to share my experience in creating settings on my channel.
Part 1. Clickers/Tappers
I think everyone knows what kind of games these are, so without further ado let's get to the point.
Each game has boosts that increase an energy, income per click, and energy recovery. We must rely on the boosts level when we set configurations in the .env file.
The main parameters that usually configure are RANDOM_TAPS_COUNT, SLEEP_BETWEEN_TAP, ADD_TAPS_ON_TURBO, SLEEP_BY_MIN_ENERGY, all others at your discretion.
These parameters depend on the level of boosts upgrade. Below are examples of how I calculate these values:
RANDOM_TAPS_COUNT - this parameter is directly related to SLEEP_BETWEEN_TAP.
How to set it correctly?
Go to the website https://clickspeedtest.com and start clicking for 5 seconds. This site will show us how many clicks we make per second. For me, it’s about 7. Since we usually click with four fingers, multiply 7 by 4 = 28. Then we multiply this value by 10 and 15 seconds. I usually take 10 - 15 seconds interval of sleep between tap. The result is:
RANDOM_TAPS_COUNT=[280, 420]
SLEEP_BETWEEN_TAP=[10, 15]
ADD_TAPS_ON_TURBO - determine the number of additional clicks that will be added to RANDOM_TAPS_COUNT. I usually take the average value of RANDOM_TAPS_COUNT, for example (280 + 420) / 2 = 350. The result is:
ADD_TAPS_ON_TURBO=350
SLEEP_BY_MIN_ENERGY - a time the script will pause when the energy limit is reached, it depends on the maximum energy level. Calculates according to the formula:
(Maximum energy/recovery level) + extra time
I add about 20 extra minutes.
During boosts upgrade, you will only have to change SLEEP_BY_MIN_ENERGY
Part 2. Claimers
With claimer games, everything is much simpler. We just claim once at a certain time to take the profit and start farming again. The only caveat is that this must also be done with a delay. Usually from 1 to 2 hours.
This is all you need to know about script parameter settings.
If you liked the post, share the link to it with your friends.
Share
People often install and run scripts with default configurations, or ask someone to send them the configurations. This is wrong because the default settings copy from one repository to another, and since the developers are lazy people, they do not change them. As a result, at the initial stage, we get +300,000 clicks per second for turbo boost and possible blacklisting as a bot.
It is also wrong to use other people’s configurations, since we do not know the level of boosts of the person who is giving us them and there is also a risk of clicking more than necessary. Therefore, I decided to share my experience in creating settings on my channel.
Part 1. Clickers/Tappers
I think everyone knows what kind of games these are, so without further ado let's get to the point.
Each game has boosts that increase an energy, income per click, and energy recovery. We must rely on the boosts level when we set configurations in the .env file.
The main parameters that usually configure are RANDOM_TAPS_COUNT, SLEEP_BETWEEN_TAP, ADD_TAPS_ON_TURBO, SLEEP_BY_MIN_ENERGY, all others at your discretion.
These parameters depend on the level of boosts upgrade. Below are examples of how I calculate these values:
RANDOM_TAPS_COUNT - this parameter is directly related to SLEEP_BETWEEN_TAP.
How to set it correctly?
Go to the website https://clickspeedtest.com and start clicking for 5 seconds. This site will show us how many clicks we make per second. For me, it’s about 7. Since we usually click with four fingers, multiply 7 by 4 = 28. Then we multiply this value by 10 and 15 seconds. I usually take 10 - 15 seconds interval of sleep between tap. The result is:
RANDOM_TAPS_COUNT=[280, 420]
SLEEP_BETWEEN_TAP=[10, 15]
ADD_TAPS_ON_TURBO - determine the number of additional clicks that will be added to RANDOM_TAPS_COUNT. I usually take the average value of RANDOM_TAPS_COUNT, for example (280 + 420) / 2 = 350. The result is:
ADD_TAPS_ON_TURBO=350
SLEEP_BY_MIN_ENERGY - a time the script will pause when the energy limit is reached, it depends on the maximum energy level. Calculates according to the formula:
(Maximum energy/recovery level) + extra time
I add about 20 extra minutes.
During boosts upgrade, you will only have to change SLEEP_BY_MIN_ENERGY
Part 2. Claimers
With claimer games, everything is much simpler. We just claim once at a certain time to take the profit and start farming again. The only caveat is that this must also be done with a delay. Usually from 1 to 2 hours.
This is all you need to know about script parameter settings.
If you liked the post, share the link to it with your friends.
Share
❤6
Залил бота для MMProBumpBot
Качаем - https://github.com/Re-Diss/MMProBumpBot
Uploaded the bot for MMProBumpBot
Download - https://github.com/Re-Diss/MMProBumpBot
Share/Поделиться
Качаем - https://github.com/Re-Diss/MMProBumpBot
Uploaded the bot for MMProBumpBot
Download - https://github.com/Re-Diss/MMProBumpBot
Share/Поделиться
Telegram
BUMP🤑
Points= NFT=Ton🤑
Welcome to Bump by MMpro Trust , Tonkeeper ,Tonstakers and STON fi!
Welcome to Bump by MMpro Trust , Tonkeeper ,Tonstakers and STON fi!
👍6🤩3
Обновил MMProBumpBot
Качаем - https://github.com/Re-Diss/MMProBumpBot
Updated bot for MMProBumpBot
Download - https://github.com/Re-Diss/MMProBumpBot
Share/Поделиться
Качаем - https://github.com/Re-Diss/MMProBumpBot
Updated bot for MMProBumpBot
Download - https://github.com/Re-Diss/MMProBumpBot
Share/Поделиться
👍4❤2
Пофикшено MMProBumpBot
Fixed MMProBumpBot
https://github.com/Re-Diss/MMProBumpBot
Спасибо @devtemz за помощь
Thanks @devtemz for help
Fixed MMProBumpBot
https://github.com/Re-Diss/MMProBumpBot
Спасибо @devtemz за помощь
Thanks @devtemz for help
👍7👏2❤1🥰1
👍9🥰1
👍5❤4
👍5❤2
👍5
TonGoldMinerBot-main.zip
52.2 KB
Бот на TonGoldMinerBot
Bot for TonGoldMinerBot
Установка стандартная. В Readme описаны конфигурации.
Installation is standard. The Readme describes the configurations.
Пока будет доступен только здесь
Bot for TonGoldMinerBot
Установка стандартная. В Readme описаны конфигурации.
Installation is standard. The Readme describes the configurations.
Пока будет доступен только здесь
👍9
TonGoldMinerBotv2.zip
52.3 KB
Фикс на TonGoldMinerBot
Fix for TonGoldMinerBot
Теперь не должно покупать больше майнеров чем выставлено в конфиге
Fixed an issue with buying of miners, now it won't buy more than set in .env file
Fix for TonGoldMinerBot
Теперь не должно покупать больше майнеров чем выставлено в конфиге
Fixed an issue with buying of miners, now it won't buy more than set in .env file
👍3
Если у вас есть желание поддержать админа/разработчика, вы можете задонатить сколько вам не жалко на кошельки ниже. 👇
If you would like to support an admin/developer you can donate some amount on wallets bellow 👇
Ton - UQA-MRS5-VfrSOH-RuqVOcrSLcMmPsbM4J72R1ynUZpx5J_6
USDT ton network - UQA-MRS5-VfrSOH-RuqVOcrSLcMmPsbM4J72R1ynUZpx5J_6
USDT Trc20 - TTdJUGT4Lg63deyJpAwJbo5nUtAVNj6tPP
If you would like to support an admin/developer you can donate some amount on wallets bellow 👇
Ton - UQA-MRS5-VfrSOH-RuqVOcrSLcMmPsbM4J72R1ynUZpx5J_6
USDT ton network - UQA-MRS5-VfrSOH-RuqVOcrSLcMmPsbM4J72R1ynUZpx5J_6
USDT Trc20 - TTdJUGT4Lg63deyJpAwJbo5nUtAVNj6tPP
👍10❤1
Отключите MOON_BONUS для MMProBumpBot. Он не работает, походу его выпылили с игры
CLAIM_MOON = False
CLAIM_MOON = False
👍6👌3
На просторах гитхаб начали появляться первые скрипты на Moonbix по этому и я решил немного от себя добавить.
Скрипт на Moonbix
https://github.com/Re-Diss/Binance-Moonbix-bot
- Играет в мини игру
- Собирает дневную прибыль
- Проходит задания
За основу взят скрипт от vanhbakaa, от себя добавил улучшеную генерацию юзер агентов
Soft for Moonbix
https://github.com/Re-Diss/Binance-Moonbix-bot
- Auto play game
- Auto checkin
- Complete tasks
Скрипт на Moonbix
https://github.com/Re-Diss/Binance-Moonbix-bot
- Играет в мини игру
- Собирает дневную прибыль
- Проходит задания
За основу взят скрипт от vanhbakaa, от себя добавил улучшеную генерацию юзер агентов
Soft for Moonbix
https://github.com/Re-Diss/Binance-Moonbix-bot
- Auto play game
- Auto checkin
- Complete tasks
🔥7👍4
👍3