diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-18 20:14:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-18 20:14:54 +0300 |
commit | 12e0196bbf34fe878b42b4010be8c08217cf45eb (patch) | |
tree | 087d368745d32a9be06c28da3dd04d9fd01969ed /hercules/code/server/db/inventory.py | |
parent | 561c8902706feec36316c270bcad0947da2a703d (diff) | |
download | tools-12e0196bbf34fe878b42b4010be8c08217cf45eb.tar.gz tools-12e0196bbf34fe878b42b4010be8c08217cf45eb.tar.bz2 tools-12e0196bbf34fe878b42b4010be8c08217cf45eb.tar.xz tools-12e0196bbf34fe878b42b4010be8c08217cf45eb.zip |
hercules: convert to inventory.sql
Diffstat (limited to 'hercules/code/server/db/inventory.py')
-rw-r--r-- | hercules/code/server/db/inventory.py | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/hercules/code/server/db/inventory.py b/hercules/code/server/db/inventory.py new file mode 100644 index 0000000..52a2fd0 --- /dev/null +++ b/hercules/code/server/db/inventory.py @@ -0,0 +1,45 @@ +# -*- coding: utf8 -*- +# +# Copyright (C) 2015 Evol Online +# Author: Andrei Karas (4144) + +from code.fileutils import * +from code.stringutils import * + +def saveInventoryTable(users): + dstFile = "newdb/inventory.sql" + firstLine = True + tpl = readFile("templates/inventory.sql") + with open(dstFile, "w") as w: + w.write(tpl) + w.write("INSERT INTO `inventory` VALUES ") + for userId in users: + user = users[userId] + for item in user.inventory: + + if firstLine == False: + w.write(",\n") + else: + firstLine = False + + w.write(("({id},{char_id},{nameid},{amount},{equip},{identify}," + + "{refine},{attribute},{card0},{card1},{card2},{card3}," + + "{expire_time},{favorite},{bound},{unique_id})").format( + id = 0, + char_id = user.char_id, + nameid = item.itemId, + amount = item.amount, + equip = item.equip, + identify = "1", + refine = item.refine, + attribute = item.attribute, + card0 = "0", + card1 = "0", + card2 = "0", + card3 = "0", + expire_time = "0", + favorite = "0", + bound = "0", + unique_id = "0" + )) + w.write("\n") |