Skip to content

Commit

Permalink
Cleaning up code and adding small features, heading towards public re…
Browse files Browse the repository at this point in the history
…lease
  • Loading branch information
CBRSightings committed Dec 10, 2017
1 parent c536b55 commit f3cffbc
Show file tree
Hide file tree
Showing 59 changed files with 12,187 additions and 2,306 deletions.
5 changes: 5 additions & 0 deletions 100iv.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"Default": {
"min_iv": "100"
}
}
18 changes: 0 additions & 18 deletions channels.txt

This file was deleted.

2 changes: 2 additions & 0 deletions config.example.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
[config]
token = MjkzMzI4Mjc0MDk0ODE3Mjgw.DM8vyg.JUXHgZwuPoO1KfCol9b2iwhOfEM
blacklist = [13, 16, 19, 21, 23, 29, 32, 41, 48, 60, 98, 115, 118, 120, 183, 161, 165, 167, 177, 194, 198]
raidBosses = [2,5,8,11,28,31,34,38,62,65,68,71,73,76,82,91,94,105,123,129,131,137,139,143,144,145,146,150,243,244,245,248,249,302]
channels = true
useRmDb = false
standardRaidTable = false
googleSuburbField = city
pokemon = true
waitForIV = 10
raids = true
minRaidLevel = 3
raidChannels = false
Expand Down
13 changes: 2 additions & 11 deletions config.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
[config]
token = MjkzMzI4Mjc0MDk0ODE3Mjgw.DDDm3w.AcvLVtE9W6GfmLzwmVH5gKoj_gU
blacklist = [13, 16, 19, 21, 23, 29, 32, 41, 48, 60, 98, 115, 118, 120, 183, 161, 165, 167, 177, 194, 198]
raidBosses = [2,5,8,11,28,31,34,38,62,65,68,71,73,76,82,91,94,105,123,129,131,137,139,143,144,145,146,150,243,244,245,248,249,302,303,359]
useRmDb = false
standardRaidTable = false
googleSuburbField = city
pokemon = true
waitForIV = 10
raids = true
minRaidLevel = 3
raidChannels = false
Expand Down Expand Up @@ -34,18 +36,7 @@ password = mimi
ip = localhost
port = 3306
dbName = pokemongomapdb
;user = novabot
;password = Password123
;ip = 192.168.200.210
;port = 3306
;dbName = pokemongomapdb

;[novabot db]
;user = novabot
;password = Password123
;ip = 192.168.200.210
;port = 3306
;dbName = pokealerts
[novabot db]
user = root
password = mimi
Expand Down
13 changes: 12 additions & 1 deletion create-geocoding.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,15 @@ CREATE TABLE geocoding
sublocality VARCHAR(50),
country VARCHAR(50),
CONSTRAINT `PRIMARY` PRIMARY KEY (lat, lon)
);
);

create table preset
(
user_id varchar(50) not null,
preset_name varchar(50) not null,
location varchar(50) not null,
primary key (user_id, preset_name, location),
constraint preset_users_id_fk
foreign key (user_id) references users (id)
);

Loading

0 comments on commit f3cffbc

Please sign in to comment.