https://github.com/funnyrain/farmhac
Farm Hours and Cards Steam
https://github.com/funnyrain/farmhac
cards cards-game farming hours steam steam-api steam-card-bot steam-cards
Last synced: about 1 month ago
JSON representation
Farm Hours and Cards Steam
- Host: GitHub
- URL: https://github.com/funnyrain/farmhac
- Owner: FunnyRain
- Created: 2020-06-27T12:58:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-10T13:28:07.000Z (about 5 years ago)
- Last Synced: 2025-08-17T10:39:29.812Z (2 months ago)
- Topics: cards, cards-game, farming, hours, steam, steam-api, steam-card-bot, steam-cards
- Language: JavaScript
- Homepage: https://funnyrain.github.io/page/
- Size: 1.95 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FarmHaC - Farm Hours and Cards Steam
### Ru:
###### Установка:
```bash
git clone https://github.com/FunnyRain/farmhac
cd farmhac
npm i
```
###### Настройка: (config.js)
```js
module.exports = {
/** логин */
login: `admin`,
/** пароль */
password: `admin`,
/** game-id
* Пример: https://store.steampowered.com/app/730/CounterStrike_Global_Offensive/
* после app/... идёт game-id - 730
* Также , можно поставить на фарм сразу несколько игр:
* gameid: [730, 570],
*/
gameid: 730,
/** SteamGuard - если на аккаунте он стоит - пишем true
* Если нет - false
*/
twoFA: false
}
```
###### Запуск
```bash
node index.js
```
### Eng:
###### Installing:
```bash
git clone https://github.com/FunnyRain/farmhac
cd farmhac
npm i
```
###### Setting: (config.js)
```js
module.exports = {
/** login */
login: `admin`,
/** password */
password: `admin`,
/** game-id
* Example: https://store.steampowered.com/app/730/CounterStrike_Global_Offensive/
* after the app/... there is a game-id - 730
* You can also put several games on the farm at once:
* gameid: [730, 570],
*/
gameid: 730,
/** SteamGuard - if it is on the account - write true
* If not - false
*/
twoFA: false
}
```
###### Launch
```bash
node index.js
```