7
0
mirror of https://github.com/RPG-Research/bcirpg.git synced 2024-04-16 14:23:01 +00:00

Performed Some Clean up for the project

This commit is contained in:
To Live Is To Die
2022-02-06 12:16:16 -07:00
parent da24e073f3
commit b5ee74a818
153 changed files with 0 additions and 1127 deletions
DBBrowser/DB Browser for SQLite
DB Browser for SQLCipher.exeDB Browser for SQLite.exeQt5Concurrent.dllQt5Core.dllQt5Gui.dllQt5Network.dllQt5PrintSupport.dllQt5Widgets.dllQt5Xml.dllapi-ms-win-core-console-l1-1-0.dllapi-ms-win-core-datetime-l1-1-0.dllapi-ms-win-core-debug-l1-1-0.dllapi-ms-win-core-errorhandling-l1-1-0.dllapi-ms-win-core-file-l1-1-0.dllapi-ms-win-core-file-l1-2-0.dllapi-ms-win-core-file-l2-1-0.dllapi-ms-win-core-handle-l1-1-0.dllapi-ms-win-core-heap-l1-1-0.dllapi-ms-win-core-interlocked-l1-1-0.dllapi-ms-win-core-libraryloader-l1-1-0.dllapi-ms-win-core-localization-l1-2-0.dllapi-ms-win-core-memory-l1-1-0.dllapi-ms-win-core-namedpipe-l1-1-0.dllapi-ms-win-core-processenvironment-l1-1-0.dllapi-ms-win-core-processthreads-l1-1-0.dllapi-ms-win-core-processthreads-l1-1-1.dllapi-ms-win-core-profile-l1-1-0.dllapi-ms-win-core-rtlsupport-l1-1-0.dllapi-ms-win-core-string-l1-1-0.dllapi-ms-win-core-synch-l1-1-0.dllapi-ms-win-core-synch-l1-2-0.dllapi-ms-win-core-sysinfo-l1-1-0.dllapi-ms-win-core-timezone-l1-1-0.dllapi-ms-win-core-util-l1-1-0.dllapi-ms-win-crt-conio-l1-1-0.dllapi-ms-win-crt-convert-l1-1-0.dllapi-ms-win-crt-environment-l1-1-0.dllapi-ms-win-crt-filesystem-l1-1-0.dllapi-ms-win-crt-heap-l1-1-0.dllapi-ms-win-crt-locale-l1-1-0.dllapi-ms-win-crt-math-l1-1-0.dllapi-ms-win-crt-multibyte-l1-1-0.dllapi-ms-win-crt-private-l1-1-0.dllapi-ms-win-crt-process-l1-1-0.dllapi-ms-win-crt-runtime-l1-1-0.dllapi-ms-win-crt-stdio-l1-1-0.dllapi-ms-win-crt-string-l1-1-0.dllapi-ms-win-crt-time-l1-1-0.dllapi-ms-win-crt-utility-l1-1-0.dll
bearer
concrt140.dll
extensions
imageformats
libcrypto-1_1-x64.dlllibssl-1_1-x64.dll
licenses
msvcp140.dllmsvcp140_1.dllmsvcp140_2.dll
platforms
printsupport
sqlcipher.dllsqlite3.dll
styles
translations
ucrtbase.dllvccorlib140.dllvcruntime140.dll
Databases/TempFolderForDatabases
Godot/MainMenu/GodotUserInterface_Luke
Phase1

@ -1,7 +1,6 @@
extends Node
class_name Die
enum DieCategory{
D4 = 4,
D6 = 6,

@ -1,6 +1,5 @@
extends Node
# Declare member variables here. Examples:
# var a = 2
# var b = "text"

@ -11,7 +11,6 @@ func _ready():
db = SQLite.new()
db.path = db_name
commitDataToDB()
#readFromDB()
getItemsByUserID(1)
func commitDataToDB():
@ -37,9 +36,7 @@ func readFromDB():
func getItemsByUserID(id):
db.open_db()
#To Do, we should probably make this more generic, so it can query differnt tables
db.query("select playerinfo.name as pname, ItemIventory.name as iname from playerinfo left join ItemIventory on playerinfo.ID = ItemIventory.PlayerID where playerinfo.id = " + str(id))
for i in range(0, db.query_result.size()):
print("Query results ", db.query_result[i]["pname"], db.query_result[i]["iname"])