You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been trying to research how to go about pulling data from the game to add a overlay to the map that shrouds the map and only reveals the map as the player explores it along with player location data. I cant for the life of me find any info on the bin files or how they are structured internally. I thought this game was mod friendly? But anyways would be a neat feature that a faction could host on a wamp or xampp webserver
The text was updated successfully, but these errors were encountered:
The structure of bin files is dependent on mods. It is not easy to retrieve visited area info from bin files.
However, the current player location is simple to get. The player database (players.db) stores this info. You can list the locations of all players via the following script:
importsqlite3playersDB=sqlite3.connect('players.db')
cursor=playersDB.cursor()
cursor.execute('SELECT name, wx, wy, x, y, z FROM localPlayers;')
print(cursor.fetchall())
I have been trying to research how to go about pulling data from the game to add a overlay to the map that shrouds the map and only reveals the map as the player explores it along with player location data. I cant for the life of me find any info on the bin files or how they are structured internally. I thought this game was mod friendly? But anyways would be a neat feature that a faction could host on a wamp or xampp webserver
The text was updated successfully, but these errors were encountered: