Skip to content

Latest commit

 

History

History

guide

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Гайд как получить токен

1. Для начала нужно установить расшерение

Resource Override 1

2. Установите такие же настройки и нажмите Edit file

2

3. Вставьте этот код:

if(location.hostname === "hamsterkombatgame.io") {
    const original_indexOf = Array.prototype.indexOf
    Array.prototype.indexOf = function (...args) {
        if(JSON.stringify(this) === JSON.stringify(["android", "android_x", "ios"])) {
            setTimeout(() => {
                Array.prototype.indexOf = original_indexOf
            })
            return 0
        }
        return original_indexOf.apply(this, args)
    }
}

3

4. Теперь нажминте F12 и откройтке хомяка в браузере

4

5. В одном из запросов найдите токен и полностью скопируйте его

5

Затем создайте папку env а в ней файл config.json и вставьте в него сессии

{
  "sessions": [
    {
      "token": "Bearer <token>",
      "tap": true,
      "upgrade": true
    }
  ]
}