def ValidateConfig():
global val_Stable
err_message = ""
if ent_SaveFile.get() == "":
err_message = "\nSaveData.dat location is empty"
if ent_OutputFile.get() == "":
err_message = err_message + "\nOutput file location is empty"
if val_Stable.get() == 1:
if lst_Stables.index(ACTIVE) == 0:
err_message = err_message + "\nStable not selected"
if err_message != "":
tkMessageBox.showerror("FireGUI Error", "Unable to process: \n%s" % err_message)
return 0
else:
return 1
# Function to update all the missions to rank S
评论列表
文章目录