I want to include SteamBot in my project but I'm already stumped on the first step, which is the setup step.
From the README of SteamBot:
Step 0: If you've just recently cloned this repository, there are a few things you need to do.
- Run
git submodule init
to initialize the sub-module configuration file.- Run
git submodule update
to pull the latest version of the sub-modules that are included (namely, SteamKit2).- Build the program. Since SteamKit2 is licensed under the LGPL, and SteamBot should be released under the MIT license, SteamKit2's code cannot be included in SteamBot. This includes executables. We'll probably make downloads available on GitHub.
- Continue on like normal.
I think "cloned" would mean simply clicking the "Clone in Windows" button on the website, right? But I do not know how to "run git submodule init
" or how to "build the program". It would be great if anyone could tell me specifically what to do.