-
-
Save delasy/7ef35c70cafe3c565949af6784a5b291 to your computer and use it in GitHub Desktop.
// 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', | |
headers: { | |
Authorization: `Bearer ${HK_TOKEN}`, | |
'Content-Type': 'application/json', | |
}, | |
body: JSON.stringify({ promoCode }), | |
}); | |
} | |
async function applyPromoCron(gameKey) { | |
const gp = new GamePromo(); | |
for (let j = 0; j < 4; j++) { | |
const promoCode = await gp.getCode(gameKey); | |
await applyPromo(promoCode); | |
} | |
} | |
const jobs = [ | |
{ | |
schedule: '0 42 10 * * *', | |
command: async () => applyPromoCron('BIKE'), | |
}, | |
{ | |
schedule: '0 15 12 * * *', | |
command: async () => applyPromoCron('TRAIN'), | |
}, | |
{ | |
schedule: '0 31 14 * * *', | |
command: async () => applyPromoCron('CUBE'), | |
}, | |
{ | |
schedule: '0 21 16 * * *', | |
command: async () => applyPromoCron('CLONE'), | |
}, | |
{ | |
schedule: '0 36 18 * * *', | |
command: async () => applyPromoCron('MERGE'), | |
}, | |
{ | |
schedule: '0 12 20 * * *', | |
command: async () => applyPromoCron('TWERK'), | |
}, | |
{ | |
schedule: '0 21 22 * * *', | |
command: async () => applyPromoCron('POLY'), | |
}, | |
]; | |
jobs.forEach((job) => { | |
CronJob.from({ | |
cronTime: job.schedule, | |
onTick: job.command, | |
start: true, | |
timeZone: 'utc', | |
}); | |
}); |
const { CronJob } = require('cron'); | |
const HK_TOKEN = '<api-token>'; | |
function sync() { | |
const randomMinute = Math.floor(Math.random() * 60); | |
setTimeout(() => { | |
fetch('https://api.hamsterkombatgame.io/clicker/sync', { | |
method: 'POST', | |
headers: { | |
Authorization: `Bearer ${HK_TOKEN}`, | |
'Content-Type': 'application/json', | |
} | |
}); | |
}, randomMinute * 60_000); | |
} | |
CronJob.from({ | |
cronTime: '0 0 */2 * * *', | |
onTick: sync, | |
start: true, | |
timeZone: 'utc', | |
}); |
what does this do?
it syncs your Hamster account and collects coins instead of you every 3 hours. use it only if you know how to extract auth token from Hamster and you know all the risks (no one knows if Hamster tracks this, but your account could get suspended). I used similar script for 3 months now and my account fully functional.
how to extract the auth token
I actually know two methods. The first method is done directly through the mobile phone (Android), and the second method is through the telegram website. For the first method, you need to access the Hamster bot. As soon as you press the start button, disconnect your internet connection, and you'll encounter an error that the hamster's URL appears within it. Next, you should copy it, decode the URL, and then extract the auth part. In the second method, you can log into the telegram web, go to the hamster bot, start the hamster app (you'll see an error that says open the app within your mobile phone), open the chrome inspect, go to the storage session, find a key-value pair including
weba
, change it toandroid
orios
, reload the hamster app within the bot by the three dots on top. Next, go to the elements, search for<iframe>
, copy the hamster URL. Now, you should decode the URL and extract the auth part.
how to decode it
what does this do?
it syncs your Hamster account and collects coins instead of you every 3 hours. use it only if you know how to extract auth token from Hamster and you know all the risks (no one knows if Hamster tracks this, but your account could get suspended). I used similar script for 3 months now and my account fully functional.
how to extract the auth token
I actually know two methods. The first method is done directly through the mobile phone (Android), and the second method is through the telegram website. For the first method, you need to access the Hamster bot. As soon as you press the start button, disconnect your internet connection, and you'll encounter an error that the hamster's URL appears within it. Next, you should copy it, decode the URL, and then extract the auth part. In the second method, you can log into the telegram web, go to the hamster bot, start the hamster app (you'll see an error that says open the app within your mobile phone), open the chrome inspect, go to the storage session, find a key-value pair including
weba
, change it toandroid
orios
, reload the hamster app within the bot by the three dots on top. Next, go to the elements, search for<iframe>
, copy the hamster URL. Now, you should decode the URL and extract the auth part.how to decode it
you can use the online website URL decoder such as https://www.urldecoder.org/. keep in mind you need to decode the json part of the URL twice to be fully human readable. Or you can give it to the chat gpt and ask it to decode the URL to be human readable.
what does this do?
it syncs your Hamster account and collects coins instead of you every 3 hours. use it only if you know how to extract auth token from Hamster and you know all the risks (no one knows if Hamster tracks this, but your account could get suspended). I used similar script for 3 months now and my account fully functional.
how to extract the auth token
I actually know two methods. The first method is done directly through the mobile phone (Android), and the second method is through the telegram website. For the first method, you need to access the Hamster bot. As soon as you press the start button, disconnect your internet connection, and you'll encounter an error that the hamster's URL appears within it. Next, you should copy it, decode the URL, and then extract the auth part. In the second method, you can log into the telegram web, go to the hamster bot, start the hamster app (you'll see an error that says open the app within your mobile phone), open the chrome inspect, go to the storage session, find a key-value pair including
weba
, change it toandroid
orios
, reload the hamster app within the bot by the three dots on top. Next, go to the elements, search for<iframe>
, copy the hamster URL. Now, you should decode the URL and extract the auth part.how to decode it
you can use the online website URL decoder such as https://www.urldecoder.org/. keep in mind you need to decode the json part of the URL twice to be fully human readable. Or you can give it the chat gpt and ask it to decode the URL to be human readable.
okay thanks I got the parameters as 'query_id' , user and first name. Now what
what does this do?
it syncs your Hamster account and collects coins instead of you every 3 hours. use it only if you know how to extract auth token from Hamster and you know all the risks (no one knows if Hamster tracks this, but your account could get suspended). I used similar script for 3 months now and my account fully functional.
how to extract the auth token
I actually know two methods. The first method is done directly through the mobile phone (Android), and the second method is through the telegram website. For the first method, you need to access the Hamster bot. As soon as you press the start button, disconnect your internet connection, and you'll encounter an error that the hamster's URL appears within it. Next, you should copy it, decode the URL, and then extract the auth part. In the second method, you can log into the telegram web, go to the hamster bot, start the hamster app (you'll see an error that says open the app within your mobile phone), open the chrome inspect, go to the storage session, find a key-value pair including
weba
, change it toandroid
orios
, reload the hamster app within the bot by the three dots on top. Next, go to the elements, search for<iframe>
, copy the hamster URL. Now, you should decode the URL and extract the auth part.how to decode it
you can use the online website URL decoder such as https://www.urldecoder.org/. keep in mind you need to decode the json part of the URL twice to be fully human readable. Or you can give it the chat gpt and ask it to decode the URL to be human readable.
okay thanks I got the parameters as 'query_id' , user and first name. Now what
Ahh, I forgot to mention a part. Actually, the auth token there's not within the decoded URL. In fact, there's no need to decode the URL. You only need to click on the extracted URL, open your hamster kombat by a browser, then go to the inspect, check an API call's header, extract the authorization bearer token, or you could go to the local storage, extract the auth token there.
hey @delasy should we use a proxy with the sync.js
hey @delasy should we use a proxy with the sync.js
you should, if you are using HamsterKombat with proxy. ideally your device and machine you are running sync.js on, should have same IP
hey @delasy should we use a proxy with the sync.js
you should, if you are using HamsterKombat with proxy. ideally your device and machine you are running sync.js on, should have same IP
Isn't it the same IP when I run Hamster Kombat on a machine and a device (phone) that are connected to the same Wi-Fi?
Isn't it the same IP when I run Hamster Kombat on a machine and a device (phone) that are connected to the same Wi-Fi?
should be same IP, not sure what configuration you have
Isn't it the same IP when I run Hamster Kombat on a machine and a device (phone) that are connected to the same Wi-Fi?
should be same IP, not sure what configuration you have
I have this sync js you provided running on the same internet connection
Isn't it the same IP when I run Hamster Kombat on a machine and a device (phone) that are connected to the same Wi-Fi?
should be same IP, not sure what configuration you have
I have this sync js you provided running on the same internet connection
@delasy ??
@delasy ??
what's your question?
Isn't it the same IP when I run Hamster Kombat on a machine and a device (phone) that are connected to the same Wi-Fi?
should be same IP, not sure what configuration you have
what do you mean by configuration? I have this sync js you provided running on the same internet connection
what do you mean by configuration? I have this sync js you provided running on the same internet connection
then you should be good
I actually know two methods. The first method is done directly through the mobile phone (Android), and the second method is through the telegram website. For the first method, you need to access the Hamster bot. As soon as you press the start button, disconnect your internet connection, and you'll encounter an error that the hamster's URL appears within it. Next, you should copy it, decode the URL, and then extract the auth part. In the second method, you can log into the telegram web, go to the hamster bot, start the hamster app (you'll see an error that says open the app within your mobile phone), open the chrome inspect, go to the storage session, find a key-value pair including
weba
, change it toandroid
orios
, reload the hamster app within the bot by the three dots on top. Next, go to the elements, search for<iframe>
, copy the hamster URL. Now, you should decode the URL and extract the auth part.