by @delasy
This script is way more advanced than other scripts out there.
- allows generating HamsterKombat coupon code for free using your machine.
| // insert hamster-kombat-playground-games-promo-keys-generator.js here | |
| // with removed `async function main() {...}` and `main().catch(Logger.panic);` | |
| const { CronJob } = require('cron'); | |
| const HK_TOKEN = '<api-token>'; | |
| async function applyPromo(promoCode) { | |
| await fetch('https://api.hamsterkombatgame.io/clicker/apply-promo', { | |
| method: 'POST', |
by @delasy
This script is way more advanced than other scripts out there.