I found this data within the SMB3 sqlite
database located within the Steam
program files on Windows 10.
Program Files (x86)/Steam/steamapps/common/Super Mega Baseball 3/D3D11/bigfly/media/database/bigfly.sqlite
Download all the player images from : https://drive.google.com/drive/u/0/folders/1RtlftwSAvzLRdTmpspko-ejrwEhGO6Rl
The database was named bigfly.sqlite
, I made a copy of it and used sqlite3
to dig into the database schema. Some quick commands for sqlite3
:
.open <db name>
open the database..tables
displays the db tables to begin queries..headers on
displays headers in db output..mode column
easier to read.SELECT * from <table_name>
simple query uselimit 10
to just see the headers..output output.csv
to output the query to a CSV file
Additional data for the options was shared to me.
These are some simple queries used to eventually output the data in this site. I added the headers for each of the table outputs.
GUID | originalGUID | teamGUID | power | contact | speed | fielding | arm | velocity | junk | accuracy | age
select * from t_baseball_players;
baseballPlayerGUID | firstName | lastName | primaryPosition | pitcherRole
select * from v_baseball_player_info;
select * from t_team_types;
teamType | typeName
0, standard
1, sandbox
2, template
GUID | originalGUID | teamName | isBuiltIn | isGenerated | teamType | templateTeamFamily | isHistorical
select * from t_teams;
select
team.teamName,
vbpi.firstName,
vbpi.lastName,
vbpi.primaryPosition,
vbpi.pitcherRole,
tbp.power,
tbp.contact,
tbp.speed,
tbp.fielding,
tbp.arm,
tbp.velocity,
tbp.junk,
tbp.accuracy,
tbp.age
from v_baseball_player_info vbpi
join t_baseball_players tbp
on vbpi.baseballPlayerGUID = tbp.GUID
join t_teams team
on tbp.teamGUID = team.GUID
This project was bootstrapped with Create React App.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
BE CAREFUL NOT TO RE-UPLOAD THE PLAYER IMAGES OVER AND OVER AGAIN!!!!!!!!!!!!!!!!!!!!!