Blide & console output question

BlitzMax Forums/BlitzMax Beginners Area/Blide & console output question

Galdy(Posted 2016) [#1]
I'm trying to examine the contents of ItemFloorCoords[39,17].y & ItemFloorCoords[a, b].y by printing it to the console, but it only shows the last 14 or so. How do i get BLide to print the whole thing to the console so I can scroll through the entire contents. I want to be able to compare it to my defdata entries.


RustyKristi(Posted 2016) [#2]
you could switch temp using the default maxide which has scroll (use print) or better output it to text log.


Henri(Posted 2016) [#3]
Hi,

a way to iterate all the values in a multidimensional array:
Strict

Local ar:Int[3, 4]
Local dim:Int[] = ar.Dimensions()

'Populate
For Local x:Int = 0 Until dim[0]
	For Local y:Int = 0 Until dim[1]	
		ar[x, y] = Rand(0, 10)
	Next
Next

'Iterate
For Local x:Int = 0 Until dim[0]
	For Local y:Int = 0 Until dim[1]	
		Print "[" + x + ", " + y + "] = " + ar[x, y]
	Next
Next


-Henri


Chalky(Posted 2016) [#4]
Assuming you are doing something similar to Henri's code, your problem might be related to a BLide parameter. In BLide's Preferences/General tab there is a slider for setting the max number of console lines (100-64000) - does changing it make any difference?


Galdy(Posted 2016) [#5]
Thanks Guys for the input. Chalky you nailed it. Don't know how I was missing that slider. lol.