mirror of
https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server.git
synced 2025-11-07 17:36:15 +00:00
34 lines
637 B
Python
34 lines
637 B
Python
# Released under the MIT License. See LICENSE for details.
|
|
import _ba, json
|
|
|
|
settings_path = _ba.env()["python_directory_user"]+"/setting.json"
|
|
|
|
settings=None
|
|
|
|
|
|
|
|
def get_settings_data():
|
|
global settings
|
|
if settings==None:
|
|
with open(settings_path, "r") as f:
|
|
data = json.load(f)
|
|
settings=data
|
|
return settings
|
|
else:
|
|
|
|
return settings
|
|
|
|
|
|
|
|
def commit(data):
|
|
with open(settings_path, "w") as f:
|
|
json.dump(data, f, indent=4)
|
|
|
|
|
|
|
|
def sendError(msg : str, client_id : int = None):
|
|
if client_id == None:
|
|
_ba.screenmessage(msg, color=(1,0,0))
|
|
else:
|
|
_ba.screenmessage(msg, color=(1,0,0), transient=True, clients=[client_id])
|
|
|