Loading File Error

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By MakLinux

I load a file and get a record too much [arry.pop_back()], and this error message.

I’m a bit confused about what you are trying to achieve here, but it could be interesting to see how you are saving this data. Perhaps the data in the file is not exactly like you expect.

Note: you can do err == OK instead of err == 0.

Zylann | 2018-11-08 19:04

:bust_in_silhouette: Reply From: MakLinux

save function

func _on_But_Speichern_pressed():
	save_I(Waff_Arr, Waff_Index+1, "res://Waffen.dat")

func save_I(U_Array, Laenge, FileName):
	var Datei = File.new()
	var err = Datei.open(FileName, File.WRITE) 
	print(str(err))
	for i in range(0, Laenge):
		for j in range(0, Feldlaenge):
			Datei.store_var(U_Array[i][j])
	Datei.close()