sharpzera1 Posted December 13, 2021 Posted December 13, 2021 What's up guys, Does anyone know the format of the "data" column in the SQLite players.db file?
Ranchonok Posted February 7, 2022 Posted February 7, 2022 (edited) On 12/13/2021 at 5:14 PM, sharpzera1 said: What's up guys, Does anyone know the format of the "data" column in the SQLite players.db file? I think that it's IsoPlayer or some object created in the IsoPlayer class, for example PlayerStatistic, but without decompiling the server or client, this object cannot be assembled. If u wanna get more information about character u may create mod in lua and write this data to a file for further processing. for example, i wanna get how many zombies the player has killed. I can use: local player = getSpecificPlayer(0); local kills = player:getZombieKills(); or i wanna get how long does a character survive: local player = getSpecificPlayer(0); local survTime= player:getHoursSurvived(); etc... and then use the method to write information in log file: writeLog(filemask, message) or parse the database, but this is a crutch.... sorry for my eng. Edited February 7, 2022 by Ranchonok
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now