|
1 | 1 | # BL3 Auto VIP |
2 | 2 |
|
3 | | -Cross platform Go app for automatically redeeming VIP codes for Borderlands 3 |
| 3 | +Cross platform Go app for automatically redeeming VIP codes |
| 4 | +for Borderlands 3 |
4 | 5 |
|
5 | | -Current zips of standalone executable can be found at |
6 | | -https://github.com/matt1484/bl3_auto_vip/releases |
| 6 | +## Getting Started |
7 | 7 |
|
8 | | -### Getting Started: |
9 | 8 | 1. Make a VIP account at https://borderlands.com/en-US/vip/ |
10 | 9 | 2. Download program from above link |
11 | 10 | 3. Unzip the folder |
12 | 11 | 4. Run it, you will be prompted for username and password |
13 | | -5. Enter username and password (we don’t Store this information) |
| 12 | +5. Enter username and password (we only use this info to sign into borderlands) |
14 | 13 | 6. Watch it do it’s magic |
15 | 14 | 7. Repeat when more codes come out |
16 | 15 |
|
17 | | -### To run from source: |
| 16 | + |
| 17 | +Run it with `--help` to view command line args that are supported. |
| 18 | + |
| 19 | +### Installing |
| 20 | + |
| 21 | +#### Using go |
| 22 | +```sh |
| 23 | +go get -u github.com/matt1484/bl3_auto_vip |
| 24 | +``` |
| 25 | + |
| 26 | +#### Docker |
| 27 | +To run from source: |
18 | 28 | 1. install docker |
19 | 29 | 2. download project |
20 | 30 | 3. navigate to project |
21 | 31 | 4. run `docker build -t bl3 .` |
22 | 32 | 5. run `docker run -it bl3` |
23 | 33 |
|
24 | | -Run it with `--help` to view command line args that are supported. |
| 34 | +#### Using the prebuilt releases |
| 35 | +The binaries/executables are released |
| 36 | +[here](https://github.com/matt1484/bl3_auto_vip/releases) |
| 37 | + |
| 38 | +## FAQs |
| 39 | + |
| 40 | +### Why does my operating system say it's an unrecgonized app? |
| 41 | +Telling the operating system that we're a trusted source is expensive. |
| 42 | +This is a small open source project and we don't have the funds to correctly |
| 43 | +sign the app. |
| 44 | + |
| 45 | +### Why does my antivirus flag this program? |
| 46 | +It's a false positive. If you don't trust us, you can look at the code and |
| 47 | +compile it yourself. That's one of the beauties of an open source project! |
| 48 | + |
| 49 | +### It's not working. What should I do? |
| 50 | +File an issue here with as much detail as you can provide. We're working on |
| 51 | +adding additional logging and a bug template to better assist with any issues. |
25 | 52 |
|
26 | | -### Update Log: |
27 | | -* v1.0: Initial release |
28 | | -* v1.1: Fixed timeout issues and added support for command line args (email and password) p.s. it is also much faster |
29 | | -* v1.2: Added a timer so it does not immediately close when done and also added support for codes with multiple types |
30 | | -* v1.2.1: Fixed bug where tables in comments would count as codes and add password masking |
31 | | -* v1.3: Rewrote all code in go to add future mobile support (also more maintainable and smaller executable) |
32 | | - |
33 | | -### To do: |
34 | | -* shift codes redemption |
35 | | -* auto facebook/instagram/twitter weekly points (cant watch videos but can read the articles maybe) |
36 | | -* fake emails for referral points (captcha is making this hard, so maybe not...) |
37 | | -* look into other login types (PSN, Xbox, etc.) |
38 | | -* android/ios version |
| 53 | +## License |
| 54 | +This project is licensed under the Apache-2.0 License - see the |
| 55 | +[LICENSE](LICENSE) file for details |
0 commit comments