Jessecar96 / SteamBot

Automated bot software for interacting with Steam Trade
http://scrap.tf
MIT License
1.33k stars 911 forks source link

Logged on callback: invalidPassword #14

Closed lukel97 closed 11 years ago

lukel97 commented 11 years ago

Opened up steambot.sln and ran the build, when I try to debug it however I get:

Launching bot 0
Connection Callback: OK
Logged on callback: invalidPassword
Login Failure: invalidPassword

to which the last 3 lines continue to repeat ad infinitum. And this is before I enter in any details or get any prompts. It seems to be coming from SteamKit2.SteamClient

94m3k1n9 commented 11 years ago

You didn't configure the settings.json file in your bot's bin/Debug or bin/Release directory. It doesn't ask for password anymore, you'll have to save it in the settings. Your settings.json should look like this:

{
"Admins":["STEAMID64"],
"ApiKey":"YOUR_API_KEY",
"Bots": [
                {
                        "Username":"USERNAME",
                        "Password":"PASSWORD",
                        "DisplayName":"NICKNAME",
                        "ChatResponse":"This is a bot."
                },
        ]
}
lukel97 commented 11 years ago

I feel so dumb now. Thanks man