Skip to content

Commit

Permalink
move that to a better flag
Browse files Browse the repository at this point in the history
  • Loading branch information
mzupan committed Jul 22, 2016
1 parent 4cf4190 commit d30221d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ This project uses Google Maps. There's one map coupled with the project, but as
-u USERNAME, --username USERNAME Username
-p PASSWORD, --password PASSWORD Password
-l LOCATION, --location LOCATION Location (Address or 'xx.yyyy,zz.ttttt')
-s, --save_location Save the location. Bot will pickup at last known location
-sl, --save_location Save the location. Bot will pickup at last known location
-w SPEED, --walk SPEED Walk instead of teleport with given speed (meters per second max 4.16 because of walking end on 15km/h)
-m MODE, --mode MODE Set farming Mode for the bot ('all', 'poke', 'farm')
--maxstep MAX_STEP Set the steps around your initial location(DEFAULT 5 mean 25 cells around your location)
Expand Down
2 changes: 1 addition & 1 deletion pokecli.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def init_config():
parser.add_argument("-u", "--username", help="Username", required=required("username"))
parser.add_argument("-p", "--password", help="Password", required=required("password"))
parser.add_argument("-l", "--location", help="Location", required=required("location"))
parser.add_argument("-s", "--save_location", help="Save the location. Bot will pickup at last known location", action='store_true', default=False)
parser.add_argument("-sl", "--save_location", help="Save the location. Bot will pickup at last known location", action='store_true', default=False)
parser.add_argument("-m", "--mode", help="Farming Mode", type=str, default="all")
parser.add_argument("-w", "--walk", help="Walk instead of teleport with given speed (meters per second, e.g. 2.5)", type=float, default=2.5)
parser.add_argument("-c", "--cp",help="Set CP less than to transfer(DEFAULT 100)",type=int,default=100)
Expand Down

0 comments on commit d30221d

Please sign in to comment.